import 'media_upload_attachment.dart'; class EntryMediaItems { String albumName; final List attachments; EntryMediaItems({ this.albumName = '', List? existingAttachments, }) : attachments = existingAttachments ?? []; @override String toString() { return 'EntryMediaItems{albumName: $albumName, attachments: $attachments}'; } }