FSelectContentStyle.inherit constructor
FSelectContentStyle.inherit({
- required FColors colors,
- required FStyle style,
- required FTypography typography,
- 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();