JsonRpcResponse<T> constructor

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

Implementation

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