FSelectContentStyle.inherit constructor

FSelectContentStyle.inherit({
  1. required FColors colors,
  2. required FStyle style,
  3. required FIcons icons,
  4. required FTypography typography,
  5. required bool touch,
})

Creates a FSelectContentStyle that inherits its properties.

Implementation

new inherit({
  required FColors colors,
  required FStyle style,
  required FIcons icons,
  required FTypography typography,
  required bool touch,
}) : this(
       sectionStyle: .inherit(colors: colors, style: style, typography: typography, touch: touch),
       scrollHandleStyle: .inherit(colors: colors, icons: icons, typography: typography),
       padding: const .symmetric(vertical: 6),
       decoration: FPopoverStyle.inherit(colors: colors, style: style).decoration,
     );