Command_SystemProperties constructor

Command_SystemProperties({
  1. Timestamp? schedulingTime,
})

Implementation

factory Command_SystemProperties({
  $4.Timestamp? schedulingTime,
}) {
  final _result = create();
  if (schedulingTime != null) {
    _result.schedulingTime = schedulingTime;
  }
  return _result;
}