facility_booking_state.dart 321 B

1234567891011121314151617
  1. class FacilityBookingState {
  2. //当前选中的时间日期
  3. DateTime selectedDate;
  4. FacilityBookingState({
  5. required this.selectedDate,
  6. });
  7. FacilityBookingState copyWith({
  8. DateTime? selectedDate,
  9. }) {
  10. return FacilityBookingState(
  11. selectedDate: selectedDate ?? this.selectedDate,
  12. );
  13. }
  14. }