blob: cd3c3f45048dbf6a0c50e0efcd4c3ef5a0f2cc65 [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));
}