LayoutBuilder constructor

const LayoutBuilder({Key key, @required LayoutWidgetBuilder builder })

Creates a widget that defers its building until layout.

The builder argument must not be null.

Implementation

const LayoutBuilder({
  Key key,
  @required this.builder
}) : assert(builder != null),
     super(key: key);