FSelectSection<T>.rich constructor
const
FSelectSection<T>.rich ({
- required Widget label,
- required List<
FSelectItem< children,T> > - FSelectSectionStyle style()?,
- bool? enabled,
- FItemDivider divider = FItemDivider.none,
- 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,
});