handler<T> abstract method

  1. @protected
Future<T> handler<T>(
  1. List<int> encoded, {
  2. JsonRpcClientConfig? config,
  3. int? id,
})

Sends an encoded JSON RPC request to uri and returns the decoded JSON response (Map or List of Maps).

The config object can be used to configure the request.

Implementation

@protected
Future<T> handler<T>(
  final List<int> encoded, {
  final JsonRpcClientConfig? config,
  final int? id,
});