richSection<T> static method
FSelectSection<T>
richSection<T>({
- required Widget label,
- required List<
FSelectItem< children,T> > - FSelectSectionStyle style(
- FSelectSectionStyle style
- bool? enabled,
- FItemDivider divider = .none,
- Key? key,
Creates a FSelectSection with the given children.
This function is a shorthand for FSelectSection.rich.
Implementation
static FSelectSection<T> richSection<T>({
required Widget label,
required List<FSelectItem<T>> children,
FSelectSectionStyle Function(FSelectSectionStyle style)? style,
bool? enabled,
FItemDivider divider = .none,
Key? key,
}) => .rich(label: label, style: style, enabled: enabled, divider: divider, key: key, children: children);