blob: 937ebe8e7f50d9857474e4ebb8fb65b40e8ed8c3 [file] [log] [blame]
>>>
class VeryInterestingThing {
factory VeryInterestingThing.fromJson(
mylibrarythathasalongname.JsonData jsonData) => new VeryInterestingThing(
otherlibrary.InterestingState.fromJson(jsonData.encodedState));
}
<<<
class VeryInterestingThing {
factory VeryInterestingThing.fromJson(
mylibrarythathasalongname.JsonData jsonData,
) => new VeryInterestingThing(
otherlibrary.InterestingState.fromJson(jsonData.encodedState),
);
}