new project stable version

This commit is contained in:
2026-05-10 19:11:31 +03:00
commit 3616f84556
391 changed files with 23857 additions and 0 deletions

View 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,
);
}
}