sendEmailVerification method

Future<void> sendEmailVerification(
  1. ActionCodeSettings? actionCodeSettings
)

Sends a verification email to a user.

The verification process is completed by calling applyActionCode.

Implementation

Future<void> sendEmailVerification(
  ActionCodeSettings? actionCodeSettings,
) async {
  throw UnimplementedError('sendEmailVerification() is not implemented');
}