EventRole constructor

EventRole({
  1. int? id,
  2. DateTime? dbDateCreated,
  3. DateTime? dbDateUpdated,
  4. int? event,
  5. int? group,
  6. EventRoleRole? role,
  7. int? crew,
  8. bool? isPrimary,
  9. DateTime? dateAdded,
  10. DateTime? dateRemoved,
})

Implementation

EventRole({
  this.id,
  this.dbDateCreated,
  this.dbDateUpdated,
  this.event,
  this.group,
  this.role,
  this.crew,
  this.isPrimary,
  this.dateAdded,
  this.dateRemoved,
});