CustomSingleChildLayout constructor Null safety
- {Key? key,
- required SingleChildLayoutDelegate delegate,
- Widget? child}
Creates a custom single child layout.
The delegate argument must not be null.
Implementation
const CustomSingleChildLayout({
super.key,
required this.delegate,
super.child,
}) : assert(delegate != null);