onResonse method

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

Converts a dynamic response to the generic type T.

Implementation

@override
String? onResonse(result) {
  if (result == "0x") return null;
  return super.onResonse(result);
}