Shift constructor

Shift({
  1. int? version,
  2. String? locationId,
  3. String? createdAt,
  4. String? id,
  5. String? updatedAt,
  6. ShiftStatus? status,
  7. String? employeeId,
  8. String? timezone,
  9. String? teamMemberId,
  10. String? startAt,
  11. String? endAt,
  12. List<Break>? breaks,
  13. ShiftWage? wage,
})

Implementation

Shift({
  this.version, this.locationId, this.createdAt, this.id,
  this.updatedAt, this.status, this.employeeId, this.timezone,
this.teamMemberId, this.startAt, this.endAt, this.breaks,
this.wage
});