createUser method

Future<void> createUser(
  1. String email
)

Creates a new user with the given email address.

This kicks off a verification process that will send an email to the user. Call verifyEmail with the verification code.

Implementation

Future<void> createUser(String email) async {
  await _postMessage('createUser', [email]);
}