kopia lustrzana https://gitlab.com/mysocialportal/relatica
18 wiersze
409 B
Dart
18 wiersze
409 B
Dart
import 'media_upload_attachment.dart';
|
|
|
|
class EntryMediaItems {
|
|
final String albumName;
|
|
|
|
final List<MediaUploadAttachment> attachments;
|
|
|
|
EntryMediaItems({
|
|
this.albumName = '',
|
|
List<MediaUploadAttachment>? existingAttachments,
|
|
}) : attachments = existingAttachments ?? [];
|
|
|
|
@override
|
|
String toString() {
|
|
return 'EntryMediaItems{albumName: $albumName, attachments: $attachments}';
|
|
}
|
|
}
|