CalendarItemTypeDto constructor

CalendarItemTypeDto({
  1. required String id,
  2. String? rev,
  3. int? deletionDate,
  4. String? name,
  5. String? color,
  6. int duration = 0,
  7. String? externalRef,
  8. String? mikronoId,
  9. Set<String> docIds = const {},
  10. Map<String, String> otherInfos = const {},
  11. Map<String, String> subjectByLanguage = const {},
})

Returns a new CalendarItemTypeDto instance.

Implementation

CalendarItemTypeDto({
  required this.id,
  this.rev,
  this.deletionDate,
  this.name,
  this.color,
  this.duration = 0,
  this.externalRef,
  this.mikronoId,
  this.docIds = const {},
  this.otherInfos = const {},
  this.subjectByLanguage = const {},
});