new project stable version
This commit is contained in:
13
lib/presentation/event/send_photo_event.dart
Normal file
13
lib/presentation/event/send_photo_event.dart
Normal file
@@ -0,0 +1,13 @@
|
||||
abstract class SendPhotoEvent {}
|
||||
|
||||
class PhotoSelected extends SendPhotoEvent {
|
||||
final List<String> imagePaths;
|
||||
|
||||
PhotoSelected(this.imagePaths);
|
||||
}
|
||||
|
||||
class PhotoUploadSubmitted extends SendPhotoEvent {
|
||||
final int orderId;
|
||||
|
||||
PhotoUploadSubmitted(this.orderId);
|
||||
}
|
||||
Reference in New Issue
Block a user