prepareRegister static method
Implementation
static Future<String> prepareRegister(String userIdentifier, String password) {
if (userIdentifier == "" || password == "") {
throw const FormatException();
}
return getApi().prepareRegister(userIdentifier: userIdentifier, password: password);
}