FastSettingsDescriptor constructor

const FastSettingsDescriptor({
  1. Map<String, FastSettingsCategoryDescriptor> categories = kDefaultFastSettingsCategories,
})

Creates a new FastSettingsDescriptor instance.

The categories parameter is a map of FastSettingsCategoryDescriptor objects that describe the different categories of settings available to the user. If no categories are provided, the default categories are used.

Implementation

const FastSettingsDescriptor({
  this.categories = kDefaultFastSettingsCategories,
});