CaptureEventResult constructor

CaptureEventResult(
  1. int id,
  2. int type,
  3. dynamic value,
  4. int? handle,
)

Implementation

CaptureEventResult(int id, int type, dynamic value, int? handle) {
  this.event = CaptureEvent(id, type, value).toJson();
  if (handle != null) {
    this.handle = handle;
  }
}