JsonRpcResponse<T> constructor

JsonRpcResponse<T>({
  1. required int id,
  2. String jsonrpc = JSONRPC_VERSION,
  3. required T result,
})

Implementation

JsonRpcResponse({
  required this.id,
  this.jsonrpc = JSONRPC_VERSION,
  required this.result,
});