copyWithWrapped method
Implementation
RestModeEpisode copyWithWrapped(
{Wrapped<List<String>>? tags, Wrapped<String>? timestamp}) {
return RestModeEpisode(
tags: (tags != null ? tags.value : this.tags),
timestamp: (timestamp != null ? timestamp.value : this.timestamp));
}