merge static method

FTileGroup merge({
  1. required List<FTileGroupMixin> children,
  2. FTileGroupStyle style(
    1. FTileGroupStyle style
    )?,
  3. ScrollController? scrollController,
  4. double? cacheExtent,
  5. double maxHeight = .infinity,
  6. DragStartBehavior dragStartBehavior = .start,
  7. ScrollPhysics physics = const ClampingScrollPhysics(),
  8. bool? enabled,
  9. FItemDivider divider = .full,
  10. String? semanticsLabel,
  11. Widget? label,
  12. Widget? description,
  13. Widget? error,
  14. Key? key,
})

Creates a FTileGroup that merges multiple FTileGroupMixins together.

All group labels will be ignored.

This function is a shorthand for FTileGroup.merge.

Implementation

static FTileGroup merge({
  required List<FTileGroupMixin> children,
  FTileGroupStyle Function(FTileGroupStyle style)? style,
  ScrollController? scrollController,
  double? cacheExtent,
  double maxHeight = .infinity,
  DragStartBehavior dragStartBehavior = .start,
  ScrollPhysics physics = const ClampingScrollPhysics(),
  bool? enabled,
  FItemDivider divider = .full,
  String? semanticsLabel,
  Widget? label,
  Widget? description,
  Widget? error,
  Key? key,
}) => .merge(
  style: style,
  scrollController: scrollController,
  cacheExtent: cacheExtent,
  maxHeight: maxHeight,
  dragStartBehavior: dragStartBehavior,
  physics: physics,
  enabled: enabled,
  divider: divider,
  semanticsLabel: semanticsLabel,
  label: label,
  description: description,
  error: error,
  key: key,
  children: children,
);