1234567891011121314151617181920212223242526272829303132 |
- import 'package:widgets/load_state_layout.dart';
- class ManageState {
-
- LoadState loadingState;
- String? errorMessage;
- List<bool> datas;
-
- ManageState({
- this.loadingState = LoadState.State_Loading,
- this.errorMessage,
- required this.datas,
- });
- ManageState copyWith({
- LoadState? loadingState,
- String? errorMessage,
- bool? needShowPlaceholder,
- List<bool>? datas,
- }) {
- return ManageState(
- errorMessage: errorMessage ?? this.errorMessage,
- loadingState: loadingState ?? this.loadingState,
- datas: datas ?? this.datas,
- );
- }
- }
|