getAccount method

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

Get information about the account associated with the provided API key

Implementation

Future<Account> getAccount({
  String? apiKey,
}) async {
  return _userService.getAccount(apiKey: apiKey ?? _apiKey);
}