confirmUser method
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 realmCore.emailPasswordConfirmUser(app, token, tokenId);
}