CellFactory constructor
- {Key? key,
- required Widget child,
- Map<
Type, CellBuilder> builders = const {}, - Map<
Type, CellBuilder> compact = const {}, - Map<
Type, CellBuilder> large = const {}}
Implementation
const CellFactory({
super.key,
required super.child,
Map<Type, CellBuilder> builders = const {},
Map<Type, CellBuilder> compact = const {},
Map<Type, CellBuilder> large = const {},
}) : _builders = builders,
_buildersCompact = compact,
_buildersLarge = large;