prepareRegister abstract method

Future<String> prepareRegister({
  1. required String userIdentifier,
  2. required String password,
  3. dynamic hint,
})

Get the user input from the user client

This is used when the register endpoint should only be called from the backend and not the clients.

For full register see register()

Implementation

Future<String> prepareRegister(
    {required String userIdentifier, required String password, dynamic hint});