feat: Add support for displaying recurring shift details including start/end dates and recurring days.
This commit is contained in:
@@ -34,6 +34,10 @@ class Shift extends Equatable {
|
||||
this.breakInfo,
|
||||
this.orderId,
|
||||
this.orderType,
|
||||
this.startDate,
|
||||
this.endDate,
|
||||
this.recurringDays,
|
||||
this.permanentDays,
|
||||
this.schedules,
|
||||
});
|
||||
|
||||
@@ -68,6 +72,10 @@ class Shift extends Equatable {
|
||||
final Break? breakInfo;
|
||||
final String? orderId;
|
||||
final String? orderType;
|
||||
final String? startDate;
|
||||
final String? endDate;
|
||||
final List<String>? recurringDays;
|
||||
final List<String>? permanentDays;
|
||||
final List<ShiftSchedule>? schedules;
|
||||
|
||||
@override
|
||||
@@ -103,6 +111,10 @@ class Shift extends Equatable {
|
||||
breakInfo,
|
||||
orderId,
|
||||
orderType,
|
||||
startDate,
|
||||
endDate,
|
||||
recurringDays,
|
||||
permanentDays,
|
||||
schedules,
|
||||
];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user