CustomSingleChildLayoutModifier constructor
const
CustomSingleChildLayoutModifier({
- Key? key,
- Widget? child,
- Key? modifierKey,
- required SingleChildLayoutDelegate delegate,
Creates a custom single child layout.
The delegate
argument must not be null.
Implementation
const CustomSingleChildLayoutModifier({
super.key,
super.child,
super.modifierKey,
required this.delegate,
});