FSelectSection<T>.rich constructor

const FSelectSection<T>.rich({
  1. required Widget label,
  2. required List<FSelectItem<T>> children,
  3. FSelectSectionStyle style(
    1. FSelectSectionStyle
    )?,
  4. bool? enabled,
  5. FItemDivider divider = FItemDivider.none,
  6. Key? key,
})

Creates a FSelectSection with the given children.

Implementation

const FSelectSection.rich({
  required this.label,
  required this.children,
  this.style,
  this.enabled,
  this.divider = FItemDivider.none,
  super.key,
});