ChatTheme constructor

ChatTheme({
  1. String? extra,
  2. int? client_id,
  3. string? name,
  4. ThemeSettings? light_settings,
  5. ThemeSettings? dark_settings,
})

Implementation

ChatTheme({
  super.extra,
  super.client_id,
  this.name,
  this.light_settings,
  this.dark_settings,
});