FAutocompleteContentStyle.inherit constructor
      
      FAutocompleteContentStyle.inherit({ 
    
- required FColors colors,
- required FTypography typography,
- required FStyle style,
Creates a FAutocompleteContentStyle that inherits its properties.
Implementation
FAutocompleteContentStyle.inherit({required FColors colors, required FTypography typography, required FStyle style})
  : this(
      emptyTextStyle: typography.sm,
      progressStyle: FCircularProgressStyle.inherit(colors: colors),
      sectionStyle: FAutocompleteSectionStyle.inherit(colors: colors, style: style, typography: typography),
    );