PasswordResetResponse constructor

const PasswordResetResponse({
  1. String? email,
  2. @Default(OobCodeRequestType.PASSWORD_RESET) OobCodeRequestType requestType,
})

Default constructor

Implementation

const factory PasswordResetResponse({
  /// User's email address.
  String? email,

  /// Type of the email action code. Should be "PASSWORD_RESET".
  @Default(OobCodeRequestType.PASSWORD_RESET) OobCodeRequestType requestType,
}) = _PasswordResetResponse;