confirmAccount method

Future<void> confirmAccount(
  1. String token
)

This function confirms a user's account using a token.

Args: token (String): The "token" parameter is a string that represents a unique identifier for a user account confirmation.

Implementation

Future<void> confirmAccount(String token) async {
  return _methods.confirmAccount(token);
}