abstract class SendPhotoEvent {} class PhotoSelected extends SendPhotoEvent { final List imagePaths; PhotoSelected(this.imagePaths); } class PhotoUploadSubmitted extends SendPhotoEvent { final int orderId; PhotoUploadSubmitted(this.orderId); }