resendSignUpCode method

Future<void> resendSignUpCode()

Resend sign up code for the user with the given username

Implementation

Future<void> resendSignUpCode() async {
  _authBloc.add(AuthResendSignUpCode(_username));
  await nextBlocEvent();
}