onResonse method

  1. @override
MerkleTree? onResonse(
  1. dynamic result
)
override

Converts a dynamic response to the generic type T.

Implementation

@override
MerkleTree? onResonse(result) {
  if (result == null) return null;
  final accountInfo = SolanaAccountInfo.fromJson(result);
  return MerkleTree.fromBuffer(accountInfo.toBytesData());
}