onResonse method

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

Converts a dynamic response to the generic type T.

Implementation

@override
TransactionReceipt? onResonse(result) {
  if (result == null) return null;
  return TransactionReceipt.fromJson(result);
}