PresetTour constructor

PresetTour({
  1. required String token,
  2. String? name,
  3. required PtzPresetTourStatus status,
  4. required bool autoStart,
  5. required PtzPresetTourStartingCondition startingCondition,
  6. PtzPresetTourSpot? tourSpot,
  7. dynamic extension,
})

Implementation

PresetTour({
  required this.token,
  this.name,
  required this.status,
  required this.autoStart,
  required this.startingCondition,
  this.tourSpot,
  this.extension,
});