blob: 4a4436dffeb55580025c2a673c83873d3bdcf4b3 [file] [log] [blame] [edit]
>>>
import 'package:meta/meta.dart';
class Foo {
final int bar;
Foo({
@required this.bar,
});
}
<<<
import 'package:meta/meta.dart';
class Foo {
final int bar;
Foo({@required this.bar});
}