FSelectContentStyle.inherit constructor

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

Creates a FSelectContentStyle that inherits its properties.

Implementation

FSelectContentStyle.inherit({
  required super.colors,
  required super.style,
  required FTypography typography,
  required bool touch,
}) : sectionStyle = .inherit(colors: colors, style: style, typography: typography, touch: touch),
     scrollHandleStyle = .inherit(colors: colors, typography: typography),
     padding = const .symmetric(vertical: 6),
     super.inherit();