getBalanceRaw method

Future<JsonRpcContextResponse<u64>> getBalanceRaw(
  1. Pubkey pubkey, {
  2. GetBalanceConfig? config,
})

Returns the balance of the account of provided pubkey

Implementation

Future<JsonRpcContextResponse<u64>> getBalanceRaw(
  final Pubkey pubkey, {
  final GetBalanceConfig? config,
}) =>
    send(GetBalance(pubkey, config: config));