copyWith method
Implementation
@override
AlbumEntryModel copyWith({
String? documentID,
String? name,
PlatformMediumModel? medium,
}) {
return AlbumEntryModel(
documentID: documentID ?? this.documentID,
name: name ?? this.name,
medium: medium ?? this.medium,
);
}