getAccount abstract method

Future<Response<Account>> getAccount({
  1. String? authToken,
})

Retrieves account information.

authToken is an optional authentication token for the API.

Returns a Response containing the Account information if successful, or an error if the request fails.

Implementation

Future<Response<Account>> getAccount({String? authToken});