RemoteControlEvent constructor Null safety

RemoteControlEvent(
  1. String from,
  2. String to
)

Implementation

RemoteControlEvent(String from, String to) {
  this._from = from;
  this._to = to;
}