TF-56 Add object upload request & response and widget builder

This commit is contained in:
dab246
2021-09-17 17:37:25 +07:00
committed by Dat H. Pham
parent 858cb438a9
commit 926f249897
16 changed files with 210 additions and 5 deletions
+7 -1
View File
@@ -6,10 +6,16 @@ abstract class ViewState extends Success {}
class UIState extends ViewState {
static final idle = UIState();
static final loading = UIState();
UIState() : super();
@override
List<Object?> get props => [];
}
class LoadingState extends UIState {
LoadingState();
@override
List<Object?> get props => [];
}