new project stable version
This commit is contained in:
42
lib/presentation/state/edit_profile_state.dart
Normal file
42
lib/presentation/state/edit_profile_state.dart
Normal file
@@ -0,0 +1,42 @@
|
||||
import '../../domain/entities/user_profile.dart';
|
||||
|
||||
class EditProfileState {
|
||||
final bool isSaving;
|
||||
final bool isSuccess;
|
||||
final bool isLoading;
|
||||
final UserProfile? profile;
|
||||
final String? error;
|
||||
|
||||
const EditProfileState({
|
||||
required this.isSaving,
|
||||
required this.isSuccess,
|
||||
required this.isLoading,
|
||||
this.profile,
|
||||
this.error,
|
||||
});
|
||||
|
||||
factory EditProfileState.initial() {
|
||||
return const EditProfileState(
|
||||
isSaving: false,
|
||||
isSuccess: false,
|
||||
isLoading: false,
|
||||
);
|
||||
}
|
||||
|
||||
EditProfileState copyWith({
|
||||
bool? isSaving,
|
||||
bool? isSuccess,
|
||||
bool? isLoading,
|
||||
UserProfile? profile,
|
||||
String? error,
|
||||
}) {
|
||||
return EditProfileState(
|
||||
isSaving: isSaving ?? this.isSaving,
|
||||
isSuccess: isSuccess ?? this.isSuccess,
|
||||
isLoading: isLoading ?? this.isLoading,
|
||||
profile: profile ?? this.profile,
|
||||
error: error,
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user