feat: refactor code

This commit is contained in:
2026-06-17 12:57:28 +03:30
parent e9f294fa19
commit 519752b478
106 changed files with 3459 additions and 2309 deletions
@@ -0,0 +1,9 @@
abstract class ProfileEvent {}
class LoadProfileEvent extends ProfileEvent {}
class SaveProfileEvent extends ProfileEvent {
final String firstName;
final String avatar;
SaveProfileEvent(this.firstName, this.avatar);
}