refactor(app): Форматирование

This commit is contained in:
PetrovY
2025-05-28 16:39:56 +03:00
parent c6d4700892
commit 8692757da7
6 changed files with 1 additions and 9 deletions

View File

@@ -8,7 +8,6 @@ sealed class ProfileEvent extends Equatable {
}
final class ProfileFetchProfileEvent extends ProfileEvent {
const ProfileFetchProfileEvent({required this.id});
final String id;

View File

@@ -12,7 +12,6 @@ final class ProfileInitialState extends ProfileState {}
final class ProfileWaitingState extends ProfileState {}
final class ProfileErrorState extends ProfileState {
const ProfileErrorState({
required this.message,
required this.error,
@@ -27,7 +26,6 @@ final class ProfileErrorState extends ProfileState {
}
final class ProfileSuccessState extends ProfileState {
const ProfileSuccessState({required this.data});
final Object data;