applyActionCode method

Future<void> applyActionCode(
  1. String? code
)

Applies a verification code sent to the user by email or other out-of-band mechanism.

A FirebaseAuthException may be thrown

Implementation

Future<void> applyActionCode(String? code) {
  if (code == null || code.isEmpty) {
    return Future.value();
  }
  return _modAuth!.applyActionCode(code);
}