RecoverPassword constructor

RecoverPassword({
  1. String? extra,
  2. int? client_id,
  3. string? recovery_code,
  4. string? new_password,
  5. string? new_hint,
})

Implementation

RecoverPassword({
  super.extra,
  super.client_id,
  this.recovery_code,
  this.new_password,
  this.new_hint,
});