FilterEditorTheme constructor

const FilterEditorTheme({
  1. Color appBarBackgroundColor = imageEditorAppBarColor,
  2. Color appBarForegroundColor = const Color(0xFFE1E1E1),
  3. Color previewTextColor = const Color(0xFFE1E1E1),
  4. Color whatsAppBottomBarColor = const Color(0xFF121B22),
  5. Color background = imageEditorBackgroundColor,
})

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.whatsAppBottomBarColor = const Color(0xFF121B22),
  this.background = imageEditorBackgroundColor,
});