FilterEditorConfigs constructor

const FilterEditorConfigs({
  1. bool enabled = true,
  2. bool showLayers = true,
  3. double whatsAppFilterTextOffsetY = 0,
  4. List<FilterModel>? filterList,
})

Creates an instance of FilterEditorConfigs with optional settings.

By default, the editor is enabled, and the filter list contains all filters.

Implementation

const FilterEditorConfigs({
  this.enabled = true,
  this.showLayers = true,
  this.whatsAppFilterTextOffsetY = 0,
  this.filterList,
});