ThemeParameters constructor

ThemeParameters({
  1. String? extra,
  2. int? client_id,
  3. int32? background_color,
  4. int32? secondary_background_color,
  5. int32? text_color,
  6. int32? hint_color,
  7. int32? link_color,
  8. int32? button_color,
  9. int32? button_text_color,
})

Implementation

ThemeParameters({
  super.extra,
  super.client_id,
  this.background_color,
  this.secondary_background_color,
  this.text_color,
  this.hint_color,
  this.link_color,
  this.button_color,
  this.button_text_color,
});