SupaResetPasswordLocalization constructor

const SupaResetPasswordLocalization({
  1. String enterPassword = 'Enter your password',
  2. String passwordLengthError = 'Please enter a password that is at least 6 characters long',
  3. String updatePassword = 'Update Password',
  4. String unexpectedError = 'An unexpected error occurred',
})

Implementation

const SupaResetPasswordLocalization({
  this.enterPassword = 'Enter your password',
  this.passwordLengthError =
      'Please enter a password that is at least 6 characters long',
  this.updatePassword = 'Update Password',
  this.unexpectedError = 'An unexpected error occurred',
});