diff --git a/lib/ui/shared/who_is_out_card/bloc/who_is_out_card_state.dart b/lib/ui/shared/who_is_out_card/bloc/who_is_out_card_state.dart index f34539ca..0224d914 100644 --- a/lib/ui/shared/who_is_out_card/bloc/who_is_out_card_state.dart +++ b/lib/ui/shared/who_is_out_card/bloc/who_is_out_card_state.dart @@ -15,52 +15,3 @@ class WhoIsOutCardState with _$WhoIsOutCardState { List? selectedDayAbsences, String? error}) = _WhoIsOutCardState; } - -// class WhoIsOutCardState extends Equatable { -// final Status status; -// final DateTime selectedDate; -// final DateTime focusDay; -// final CalendarFormat calendarFormat; -// final List allAbsences; -// final List? selectedDayAbsences; -// final String? error; -// -// const WhoIsOutCardState( -// {this.calendarFormat = CalendarFormat.week, -// required this.selectedDate, -// required this.focusDay, -// this.status = Status.initial, -// this.allAbsences = const [], -// this.selectedDayAbsences, -// this.error}); -// -// WhoIsOutCardState copyWith( -// {DateTime? selectedDate, -// DateTime? focusDay, -// Status? status, -// CalendarFormat? calendarFormat, -// String? error, -// List? allAbsences, -// List? selectedDayAbsences}) { -// return WhoIsOutCardState( -// selectedDayAbsences: selectedDayAbsences ?? this.selectedDayAbsences, -// calendarFormat: calendarFormat ?? this.calendarFormat, -// selectedDate: selectedDate ?? this.selectedDate, -// status: status ?? this.status, -// error: error, -// allAbsences: allAbsences ?? this.allAbsences, -// focusDay: focusDay ?? this.focusDay, -// ); -// } -// -// @override -// List get props => [ -// status, -// selectedDate, -// allAbsences, -// error, -// calendarFormat, -// selectedDayAbsences, -// focusDay -// ]; -// }