signUpSuccessfulMessage method

  1. @override
String signUpSuccessfulMessage(
  1. String username
)
override

No description provided for @signUpSuccessfulMessage.

In en, this message translates to: 'Successfully created an account for "{username}". Please sign in and complete your profile to start using the application.'

Implementation

@override
String signUpSuccessfulMessage(String username) {
  return 'Successfully created an account for \"$username\". Please sign in and complete your profile to start using the application.';
}