import 'package:photos/models/file.dart'; class SelectedFileSplit { final List pendingUploads; final List ownedByCurrentUser; final List ownedByOtherUsers; SelectedFileSplit({ required this.pendingUploads, required this.ownedByCurrentUser, required this.ownedByOtherUsers, }); int get totalFileOwnedCount => pendingUploads.length + ownedByCurrentUser.length; }