FSelectScrollHandleStyle.inherit constructor
FSelectScrollHandleStyle.inherit({
- required FColors colors,
- required FIcons icons,
- required FTypography typography,
Creates a FSelectScrollHandleStyle that inherits its properties.
Implementation
FSelectScrollHandleStyle.inherit({required FColors colors, required FIcons icons, required FTypography typography})
: this(
iconStyle: IconThemeData(color: colors.foreground, size: typography.md.fontSize),
upIcon: icons.chevronUp,
downIcon: icons.chevronDown,
background: colors.card,
);