ThemeSettings constructor

ThemeSettings({
  1. String? extra,
  2. int? client_id,
  3. int32? accent_color,
  4. Background? background,
  5. BackgroundFill? outgoing_message_fill,
  6. Bool? animate_outgoing_message_fill,
  7. int32? outgoing_message_accent_color,
})

Implementation

ThemeSettings({
  super.extra,
  super.client_id,
  this.accent_color,
  this.background,
  this.outgoing_message_fill,
  this.animate_outgoing_message_fill,
  this.outgoing_message_accent_color,
});