account method

Future<AccountResponse> account(
  1. String accountId
)

Requests details about the account to fetch by accountId. See Account Details

Implementation

Future<AccountResponse> account(String accountId) {
  this.setSegments(["accounts", accountId]);
  return this.accountURI(this.buildUri());
}