ente/lib/events/photo_upload_event.dart
2020-09-18 01:10:08 +05:30

14 lines
237 B
Dart

class PhotoUploadEvent {
final int completed;
final int total;
final bool hasError;
final bool wasStopped;
PhotoUploadEvent({
this.completed,
this.total,
this.hasError = false,
this.wasStopped = false,
});
}