EnhancedTagModel constructor

const EnhancedTagModel({
  1. required String id,
  2. dynamic tagTypeCode,
  3. required String startTime,
  4. dynamic endTime,
  5. required DateTime startDay,
  6. dynamic endDay,
  7. dynamic comment,
  8. dynamic customName,
})

Implementation

const EnhancedTagModel({
  required this.id,
  this.tagTypeCode,
  required this.startTime,
  this.endTime,
  required this.startDay,
  this.endDay,
  this.comment,
  this.customName,
});