onResonse method

  1. @override
List<SolanaAccountInfo> onResonse(
  1. List result
)
override

Implementation

@override
List<SolanaAccountInfo> onResonse(List result) {
  return result.map((e) => SolanaAccountInfo.fromJson(e['account'])).toList();
}