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