CrewPosition constructor

CrewPosition({
  1. int? id,
  2. DateTime? dbDateCreated,
  3. DateTime? dbDateUpdated,
  4. int? crew,
  5. int? position,
  6. CrewPositionStatus? status,
  7. DateTime? dateApplied,
  8. DateTime? dateApproved,
  9. double? averageRating,
  10. String? rate,
  11. CrewPositionRateType? rateType,
  12. CrewPositionRateSource? rateSource,
  13. String? rateCurrency,
})

Implementation

CrewPosition({
  this.id,
  this.dbDateCreated,
  this.dbDateUpdated,
  this.crew,
  this.position,
  this.status,
  this.dateApplied,
  this.dateApproved,
  this.averageRating,
  this.rate,
  this.rateType,
  this.rateSource,
  this.rateCurrency,
});