blob: 62cd71ca0d6e10d76ad088a81583ade9ebcba2f9 [file] [log] [blame]
>>>
class Bar {
void foo() {
blah.method(someLongArgument, andAnotherOne, andAThirdOne, andOneMore)
.then((var x) {
var y = x * 2;
});
}
}
<<<
class Bar {
void foo() {
blah.method(someLongArgument, andAnotherOne, andAThirdOne, andOneMore).then(
(var x) {
var y = x * 2;
},
);
}
}