FAutocompleteContentStyle.inherit constructor

FAutocompleteContentStyle.inherit({
  1. required FColors colors,
  2. required FTypography typography,
  3. required FStyle style,
})

Creates a FAutocompleteContentStyle that inherits its properties.

Implementation

FAutocompleteContentStyle.inherit({required FColors colors, required FTypography typography, required FStyle style})
  : this(
      loadingIndicatorStyle: FProgressStyles.inherit(colors: colors, style: style).circularIconProgressStyle,
      sectionStyle: FAutocompleteSectionStyle.inherit(colors: colors, style: style, typography: typography),
      emptyTextStyle: typography.sm,
    );