getTokenAccountsByOwner method
Future<List<TokenAccount> >
getTokenAccountsByOwner(
- Pubkey account, {
- required TokenAccountsFilter filter,
- GetTokenAccountsByOwnerConfig? config,
inherited
Returns the token owner of an SPL Token account.
Implementation
Future<List<TokenAccount>> getTokenAccountsByOwner(
final Pubkey account, {
required final TokenAccountsFilter filter,
final GetTokenAccountsByOwnerConfig? config,
}) async => (await getTokenAccountsByOwnerRaw(account, filter: filter, config: config)).result!.value!;