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