getAccountByLogin abstract method

Future<AccountV1?> getAccountByLogin(
  1. String? correlationId,
  2. String login
)

Gets an account by its login.

  • correlationId (optional) transaction id to trace execution through call chain.
  • login a login of account to be retrieved. Return Future that receives account or error.

Implementation

Future<AccountV1?> getAccountByLogin(String? correlationId, String login);