ente/lib/events/photo_upload_event.dart

8 lines
166 B
Dart
Raw Normal View History

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