JRpcEvent constructor

JRpcEvent(
  1. int id,
  2. int type,
  3. dynamic value, [
  4. int? handle,
])

Implementation

JRpcEvent(int id, int type, dynamic value, [int? handle]) {
  // ignore: unnecessary_this
  this.result = CaptureEvent(id, type, value, handle);
}