EventCollection constructor

EventCollection({
  1. int? id,
  2. DateTime? dbDateCreated,
  3. DateTime? dbDateUpdated,
  4. String? code,
  5. String? externalCode,
  6. String? name,
  7. DateTime? dateBegin,
  8. DateTime? dateEnd,
  9. EventCollectionStatus? status,
  10. String? description,
  11. List<int>? events,
  12. int? $client,
  13. bool? hideName,
})

Implementation

EventCollection({
  this.id,
  this.dbDateCreated,
  this.dbDateUpdated,
  this.code,
  this.externalCode,
  this.name,
  this.dateBegin,
  this.dateEnd,
  this.status,
  this.description,
  this.events,
  this.$client,
  this.hideName,
});