getAuthorizations method

Future<Result<AccountAuthorizationsBase>> getAuthorizations()

Get Authorizations.

ID: e320c158.

Implementation

Future<Result<AccountAuthorizationsBase>> getAuthorizations() async {
  // Preparing the request.
  final request = AccountGetAuthorizations();

  // Invoke and wait for response.
  final response = await _c.invoke(request);

  // Return the result.
  return response._to<AccountAuthorizationsBase>();
}