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 super.colors, required super.style, required FTypography typography})
  : sectionStyle = .inherit(colors: colors, style: style, typography: typography),
    scrollHandleStyle = .inherit(colors: colors),
    padding = const .symmetric(vertical: 5),
    super.inherit();