FSelectContentStyle.inherit constructor
      
      FSelectContentStyle.inherit({ 
    
- required FColors colors,
- required FStyle style,
- required FTypography typography,
Creates a FSelectContentStyle that inherits its properties.
Implementation
FSelectContentStyle.inherit({required FColors colors, required FStyle style, required FTypography typography})
  : this(
      sectionStyle: FSelectSectionStyle.inherit(colors: colors, style: style, typography: typography),
      scrollHandleStyle: FSelectScrollHandleStyle.inherit(colors: colors),
    );