JsonRpcResponse constructor

JsonRpcResponse({
  1. required int id,
  2. String jsonrpc = '2.0',
  3. dynamic result,
  4. dynamic error,
})

Implementation

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