ThemeSettings constructor

ThemeSettings({
  1. BuiltInTheme? baseTheme,
  2. required int accentColor,
  3. Background? background,
  4. BackgroundFill? outgoingMessageFill,
  5. required bool animateOutgoingMessageFill,
  6. required int outgoingMessageAccentColor,
})

Implementation

ThemeSettings({
  this.baseTheme,
  required this.accentColor,
  this.background,
  this.outgoingMessageFill,
  required this.animateOutgoingMessageFill,
  required this.outgoingMessageAccentColor,
});