LayoutBuilder constructor
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);