copyWith method
Implementation
PlaybackQueueState copyWith({
List<Scene>? manualQueue,
List<Scene>? currentSequence,
}) {
return PlaybackQueueState(
manualQueue: manualQueue ?? this.manualQueue,
currentSequence: currentSequence ?? this.currentSequence,
);
}