JSONRPCNotification constructor

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

Implementation

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