sendVerificationEmail method

Future<void> sendVerificationEmail()

This method sends a verification email to the current user.

Implementation

Future<void> sendVerificationEmail() async {
  try {
    await AuthenticationRepository.instance.sendEmailVerification();
  } catch (e) {
      Helper.errorSnackBar(title: tOhSnap, message: e.toString());
  }
}