ScheduledCommandRecord constructor

ScheduledCommandRecord({
  1. CommandId? id,
  2. Command? command,
  3. Timestamp? schedulingTime,
})

Implementation

factory ScheduledCommandRecord({
  $43.CommandId? id,
  $43.Command? command,
  $4.Timestamp? schedulingTime,
}) {
  final _result = create();
  if (id != null) {
    _result.id = id;
  }
  if (command != null) {
    _result.command = command;
  }
  if (schedulingTime != null) {
    _result.schedulingTime = schedulingTime;
  }
  return _result;
}