onResonse method

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

Converts a dynamic response to the generic type T.

Implementation

@override
BigInt? onResonse(result) {
  return BigintUtils.tryParse(result);
}