copyWith method

RestModeEpisode copyWith({
  1. List<String>? tags,
  2. String? timestamp,
})

Implementation

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