prepareRegister static method

Future<String> prepareRegister(
  1. String userIdentifier,
  2. String password
)

Implementation

static Future<String> prepareRegister(String userIdentifier, String password) {
  if (userIdentifier == "" || password == "") {
    throw const FormatException();
  }

  return getApi().prepareRegister(userIdentifier: userIdentifier, password: password);
}