ConstrainedLayoutBuilder<ConstraintType extends Constraints> constructor
Null safety
- {Key? key,
- required Widget builder(
- BuildContext,
- ConstraintType
Creates a widget that defers its building until layout.
The builder argument must not be null, and the returned widget should not be null.
Implementation
const ConstrainedLayoutBuilder({
super.key,
required this.builder,
}) : assert(builder != null);