onResonse method
Converts a dynamic response to the generic type T
.
Implementation
@override
SolanaAccountInfo? onResonse(result) {
if (result == null) return null;
return SolanaAccountInfo.fromJson(result);
}
Converts a dynamic response to the generic type T
.
@override
SolanaAccountInfo? onResonse(result) {
if (result == null) return null;
return SolanaAccountInfo.fromJson(result);
}