createAccount abstract method

Future<AccountV1?> createAccount(
  1. String? correlationId,
  2. AccountV1 account
)

Creates an account.

  • correlation_id (optional) transaction id to trace execution through call chain.
  • account an account to be created. Return (optional) Future that receives created account or error.

Implementation

Future<AccountV1?> createAccount(String? correlationId, AccountV1 account);