FilterEditorTheme constructor

const FilterEditorTheme({
  1. Color appBarBackgroundColor = imageEditorAppBarColor,
  2. Color appBarForegroundColor = const Color(0xFFE1E1E1),
  3. Color previewTextColor = const Color(0xFFE1E1E1),
  4. Color background = imageEditorBackgroundColor,
  5. double filterListSpacing = 15,
  6. EdgeInsets filterListMargin = const EdgeInsets.fromLTRB(8, 4, 8, 10),
})

Creates an instance of the FilterEditorTheme class with the specified theme properties.

Implementation

const FilterEditorTheme({
  this.appBarBackgroundColor = imageEditorAppBarColor,
  this.appBarForegroundColor = const Color(0xFFE1E1E1),
  this.previewTextColor = const Color(0xFFE1E1E1),
  this.background = imageEditorBackgroundColor,
  this.filterListSpacing = 15,
  this.filterListMargin = const EdgeInsets.fromLTRB(8, 4, 8, 10),
});