-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Open
Labels
area-languageDart language related items (some items might be better tracked at github.com/dart-lang/language).Dart language related items (some items might be better tracked at github.com/dart-lang/language).customer-fluttertype-enhancementA request for a change that isn't a bugA request for a change that isn't a bug
Description
abstract class MultiChildRenderObjectWidget extends RenderObjectWidget {
const MultiChildRenderObjectWidget({ Key key, this.children: const <Widget>[] })
: assert(children != null),
assert(!children.any((Widget child) => child == null)), // <-- this line won't compile
super(key: key);
// ...
}mpfaff, JonasWanke, tvolkert, 2ZeroSix, AlexeyKatsuro and 5 more
Metadata
Metadata
Assignees
Labels
area-languageDart language related items (some items might be better tracked at github.com/dart-lang/language).Dart language related items (some items might be better tracked at github.com/dart-lang/language).customer-fluttertype-enhancementA request for a change that isn't a bugA request for a change that isn't a bug