ente/lib/events/photo_upload_event.dart
2020-06-16 00:12:25 +05:30

8 lines
166 B
Dart

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