InputThemeSettings constructor

const InputThemeSettings({
  1. required bool messageColorsAnimated,
  2. required BaseThemeBase baseTheme,
  3. required int accentColor,
  4. int? outboxAccentColor,
  5. List<int>? messageColors,
  6. InputWallPaperBase? wallpaper,
  7. WallPaperSettingsBase? wallpaperSettings,
})

Input Theme Settings constructor.

Implementation

const InputThemeSettings({
  required this.messageColorsAnimated,
  required this.baseTheme,
  required this.accentColor,
  this.outboxAccentColor,
  this.messageColors,
  this.wallpaper,
  this.wallpaperSettings,
}) : super._();