KiteGrid constructor
const
KiteGrid({})
Implementation
const KiteGrid({
required this.children,
this.compactColumns = 1,
this.mediumColumns = 2,
this.expandedColumns = 3,
this.gap = Dimensions.s16,
super.key,
}) : assert(compactColumns > 0, 'compactColumns must be greater than zero.'),
assert(mediumColumns > 0, 'mediumColumns must be greater than zero.'),
assert(
expandedColumns > 0,
'expandedColumns must be greater than zero.',
),
assert(gap >= 0, 'gap cannot be negative.');