registerAccount method

Future<void> registerAccount(
  1. ClientAccountRegisterContext clientAccountRegisterContext
)

This function registers a client account asynchronously using the provided context.

Args: clientAccountRegisterContext (ClientAccountRegisterContext): It is an object of type ClientAccountRegisterContext that contains the necessary information to register a client account.

Implementation

Future<void> registerAccount(
    ClientAccountRegisterContext clientAccountRegisterContext) async {
  return _methods.registerAccount(clientAccountRegisterContext);
}