resetPasswordCodeSentText method

  1. @override
String resetPasswordCodeSentText(
  1. String deliveryMedium,
  2. String username
)
override

No description provided for @resetPasswordCodeSentText.

In en, this message translates to: 'A verification code was sent via {deliveryMedium} that was registered for user "{username}". You need to provide that along with the new password to change the user's current password.'

Implementation

@override
String resetPasswordCodeSentText(String deliveryMedium, String username) {
  return 'A verification code was sent via $deliveryMedium that was registered for user \"$username\". You need to provide that along with the new password to change the user\'s current password.';
}