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