new project stable version
This commit is contained in:
13
lib/presentation/event/edit_profile_event.dart
Normal file
13
lib/presentation/event/edit_profile_event.dart
Normal file
@@ -0,0 +1,13 @@
|
||||
import '../../domain/entities/user_profile.dart';
|
||||
|
||||
abstract class EditProfileEvent {}
|
||||
|
||||
class EditProfileStarted extends EditProfileEvent {}
|
||||
|
||||
|
||||
class EditProfileSubmitted extends EditProfileEvent {
|
||||
final UserProfile profile;
|
||||
|
||||
EditProfileSubmitted(this.profile);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user