FSelectContentStyle.inherit constructor

FSelectContentStyle.inherit({
  1. required FColors colors,
  2. required FStyle style,
  3. 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),
    );