KiteSplit constructor
const
KiteSplit({})
Implementation
const KiteSplit({
required this.left,
required this.right,
this.leftFlex = 1,
this.rightFlex = 1,
this.gap = Dimensions.s16,
this.stackOnCompact = true,
super.key,
}) : assert(leftFlex > 0, 'leftFlex must be greater than zero.'),
assert(rightFlex > 0, 'rightFlex must be greater than zero.'),
assert(gap >= 0, 'gap cannot be negative.');