TF-1714 Remove constructor domain state class unnecessary

(cherry picked from commit 6293b3d5f4b1220ad285913804b7ce99ed96d54b)
This commit is contained in:
dab246
2023-08-08 12:20:14 +07:00
committed by Dat Vu
parent e3f08bcb7d
commit f80bede226
14 changed files with 32 additions and 76 deletions
+1 -20
View File
@@ -19,23 +19,4 @@ class UIState extends ViewState {
List<Object?> get props => [];
}
class LoadingState extends UIState {
LoadingState();
@override
List<Object?> get props => [];
}
class LoadingMoreState extends UIState {
LoadingMoreState();
@override
List<Object?> get props => [];
}
class RefreshingState extends UIState {
RefreshingState();
@override
List<Object?> get props => [];
}
class LoadingState extends UIState {}