RecoveryEmailAddress constructor

const RecoveryEmailAddress({
  1. required String recoveryEmailAddress,
  2. dynamic extra,
  3. int? clientId,
})

Contains information about the current recovery email address

Implementation

const RecoveryEmailAddress({
  required this.recoveryEmailAddress,
  this.extra,
  this.clientId,
});