addMix method

void addMix(
  1. DiveVideoMix mix
)

Add a video mix.

Implementation

void addMix(DiveVideoMix mix) {
  updateState((state) => state.copyWith(videoMixes: state.videoMixes.toList()..add(mix)));
}