onResonse method
Converts a dynamic response to the generic type T
.
Implementation
@override
onResonse(result) {
if (_function != null) {
return _function!.decodeOutput(BytesUtils.fromHexString(result));
}
return super.onResonse(result);
}