FItemGroup.group constructor
FItemGroup.group({
- required List<
FItemMixin> children, - FItemGroupStyle style(
- FItemGroupStyle style
- ScrollController? scrollController,
- double? cacheExtent,
- double maxHeight = .infinity,
- DragStartBehavior dragStartBehavior = .start,
- ScrollPhysics physics = const ClampingScrollPhysics(),
- bool? enabled,
- FItemDivider divider = .none,
- String? semanticsLabel,
- Key? key,
Creates a FItemGroup.
This function is a shorthand for FItemGroup.new.
Implementation
FItemGroup.group({
required List<FItemMixin> children,
FItemGroupStyle Function(FItemGroupStyle style)? style,
ScrollController? scrollController,
double? cacheExtent,
double maxHeight = .infinity,
DragStartBehavior dragStartBehavior = .start,
ScrollPhysics physics = const ClampingScrollPhysics(),
bool? enabled,
FItemDivider divider = .none,
String? semanticsLabel,
Key? key,
}) : this(
children: children,
style: style,
scrollController: scrollController,
cacheExtent: cacheExtent,
maxHeight: maxHeight,
dragStartBehavior: dragStartBehavior,
physics: physics,
enabled: enabled,
divider: divider,
semanticsLabel: semanticsLabel,
key: key,
);