RemoteCommand constructor

RemoteCommand(
  1. String id, {
  2. String? path,
  3. String? url,
  4. Function? callback,
})

Implementation

RemoteCommand(
  this.id,
  {
    this.path,
    this.url,
    this.callback
  }
);