RemoteControlMouseEvent constructor Null safety

RemoteControlMouseEvent(
  1. String from,
  2. String to,
  3. int ts,
  4. double x,
  5. double y,
  6. String actionType
)

Implementation

RemoteControlMouseEvent(String from, String to, int ts, double x, double y, String actionType) : super(from, to) {
  this._ts = ts;
  this._x = x;
  this._y = y;
  this._actionType = actionType;
}