confirmUser method

Future<void> confirmUser(
  1. String token,
  2. String tokenId
)

Confirms a user with the given token and token id. These are typically included in the registration email.

Implementation

Future<void> confirmUser(String token, String tokenId) {
  return app.handle.confirmUser(token, tokenId);
}