EventPosition constructor

EventPosition({
  1. int? id,
  2. DateTime? dbDateCreated,
  3. DateTime? dbDateUpdated,
  4. int? event,
  5. int? group,
  6. int? position,
  7. int? quantity,
  8. String? label,
  9. EventPositionStatus? status,
  10. int? sequence,
  11. EventPositionRateSetting? rateSetting,
  12. String? rate,
  13. String? rateCurrency,
  14. EventPositionRateType? rateType,
  15. String? billedRate,
  16. EventPositionBilledRateType? billedRateType,
  17. DateTime? scheduleBegin,
  18. DateTime? scheduleEnd,
  19. String? dayBegin,
  20. String? dayEnd,
  21. List<ScheduleEntry>? scheduleEntries,
  22. bool? hideEndTime,
  23. String? note,
  24. String? externalCode,
  25. DateTime? externalRemoveDate,
})

Implementation

EventPosition({
  this.id,
  this.dbDateCreated,
  this.dbDateUpdated,
  this.event,
  this.group,
  this.position,
  this.quantity,
  this.label,
  this.status,
  this.sequence,
  this.rateSetting,
  this.rate,
  this.rateCurrency,
  this.rateType,
  this.billedRate,
  this.billedRateType,
  this.scheduleBegin,
  this.scheduleEnd,
  this.dayBegin,
  this.dayEnd,
  this.scheduleEntries,
  this.hideEndTime,
  this.note,
  this.externalCode,
  this.externalRemoveDate,
});