JSONRPCRequest constructor

JSONRPCRequest({
  1. String jsonrpc = '2.0',
  2. required String method,
  3. Map<String, Object?>? params,
  4. required String id,
})

Implementation

JSONRPCRequest({
  this.jsonrpc = '2.0',
  required this.method,
  this.params,
  required this.id,
});