FMultiSelectStyle.inherit constructor
FMultiSelectStyle.inherit({
- required FColors colors,
- required FTypography typography,
- required FStyle style,
Creates a FMultiSelectStyle that inherits its properties.
Implementation
FMultiSelectStyle.inherit({required FColors colors, required FTypography typography, required FStyle style})
: this(
fieldStyle: FMultiSelectFieldStyle.inherit(colors: colors, typography: typography, style: style),
tagStyle: FMultiSelectTagStyle.inherit(colors: colors, typography: typography, style: style),
popoverStyle: FPopoverStyle.inherit(colors: colors, style: style),
searchStyle: FSelectSearchStyle.inherit(colors: colors, typography: typography, style: style),
contentStyle: FSelectContentStyle.inherit(colors: colors, typography: typography, style: style),
emptyTextStyle: typography.sm,
);