copyWith method
Implementation
RestModeEpisode copyWith({List<String>? tags, String? timestamp}) {
return RestModeEpisode(
tags: tags ?? this.tags, timestamp: timestamp ?? this.timestamp);
}
RestModeEpisode copyWith({List<String>? tags, String? timestamp}) {
return RestModeEpisode(
tags: tags ?? this.tags, timestamp: timestamp ?? this.timestamp);
}