CrewRating constructor

CrewRating({
  1. int? id,
  2. DateTime? dbDateCreated,
  3. DateTime? dbDateUpdated,
  4. int? crew,
  5. int? crewPosition,
  6. int? rosterPosition,
  7. double? rating,
  8. User? userRated,
  9. DateTime? dateRated,
  10. DateTime? dateHidden,
  11. CrewRatingType? type,
  12. String? notes,
})

Implementation

CrewRating({
  this.id,
  this.dbDateCreated,
  this.dbDateUpdated,
  this.crew,
  this.crewPosition,
  this.rosterPosition,
  this.rating,
  this.userRated,
  this.dateRated,
  this.dateHidden,
  this.type,
  this.notes,
});