getAccountInfoRaw method

Future<JsonRpcContextResponse<AccountInfo?>> getAccountInfoRaw(
  1. Pubkey pubkey, {
  2. GetAccountInfoConfig? config,
})

Returns all information associated with the account of the provided pubkey.

Implementation

Future<JsonRpcContextResponse<AccountInfo?>> getAccountInfoRaw(
  final Pubkey pubkey, {
  final GetAccountInfoConfig? config,
}) =>
    send(GetAccountInfo(pubkey, config: config));