decoder method
Decodes the result
property of a successful JSON RPC response.
final response = {"jsonrpc":"2.0", "result":197469478, "id":1}
decoder(response["result"])
Implementation
@override
JsonRpcResponseContext<T> decoder(final Map<String, dynamic> value) =>
JsonRpcResponseContext.decode(value, valueDecoder);