getTokenAccountsByDelegateRaw method
      
Future<JsonRpcContextResponse<List<TokenAccount> > > 
getTokenAccountsByDelegateRaw(
    
- Pubkey delegate, {
- required TokenAccountsFilter filter,
- GetTokenAccountsByDelegateConfig? config,
Returns all SPL Token accounts approved by delegate.
Implementation
Future<JsonRpcContextResponse<List<TokenAccount>>>
getTokenAccountsByDelegateRaw(
  final Pubkey delegate, {
  required final TokenAccountsFilter filter,
  final GetTokenAccountsByDelegateConfig? config,
}) => send(
  GetTokenAccountsByDelegate(delegate, filter: filter, config: config),
);