formatted all files.

This commit is contained in:
Faris Armoush
2025-06-12 15:33:32 +03:00
parent 29959f567e
commit 04250ebc98
474 changed files with 5425 additions and 4338 deletions

View File

@ -17,9 +17,9 @@ class EffectPeriodState extends Equatable {
factory EffectPeriodState.initial() {
return const EffectPeriodState(
selectedPeriod: EnumEffectivePeriodOptions.allDay,
selectedDaysBinary: "1111111", // All days selected
customStartTime: "00:00",
customEndTime: "23:59",
selectedDaysBinary: '1111111', // All days selected
customStartTime: '00:00',
customEndTime: '23:59',
);
}
@ -50,5 +50,6 @@ class EffectPeriodState extends Equatable {
}
@override
List<Object?> get props => [selectedPeriod, selectedDaysBinary, customStartTime, customEndTime];
List<Object?> get props =>
[selectedPeriod, selectedDaysBinary, customStartTime, customEndTime];
}