SetPassword constructor

SetPassword({
  1. String? extra,
  2. int? client_id,
  3. string? old_password,
  4. string? new_password,
  5. string? new_hint,
  6. Bool? set_recovery_email_address,
  7. string? new_recovery_email_address,
})

Implementation

SetPassword({
  super.extra,
  super.client_id,
  this.old_password,
  this.new_password,
  this.new_hint,
  this.set_recovery_email_address,
  this.new_recovery_email_address,
});