getParsedAccountInfo method

Future<AccountInfo?> getParsedAccountInfo(
  1. Pubkey pubkey, {
  2. GetParsedAccountInfoConfig? config,
})

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

Implementation

Future<AccountInfo?> getParsedAccountInfo(
  final Pubkey pubkey, {
  final GetParsedAccountInfoConfig? config,
}) =>
    getAccountInfo(pubkey, config: config);