FMultiSelectStyle.inherit constructor

FMultiSelectStyle.inherit({
  1. required FColors colors,
  2. required FTypography typography,
  3. 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,
    );