File tree Expand file tree Collapse file tree 3 files changed +3
-0
lines changed
video_player_android/example/lib
video_player_avfoundation/example/lib Expand file tree Collapse file tree 3 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -372,6 +372,7 @@ class VideoPlayerController extends ValueNotifier<VideoPlayerValue> {
372372 return ;
373373 }
374374
375+ // ignore: missing_enum_constant_in_switch
375376 switch (event.eventType) {
376377 case VideoEventType .initialized:
377378 value = value.copyWith (
Original file line number Diff line number Diff line change @@ -219,6 +219,7 @@ class MiniController extends ValueNotifier<VideoPlayerValue> {
219219 final Completer <void > initializingCompleter = Completer <void >();
220220
221221 void eventListener (VideoEvent event) {
222+ // ignore: missing_enum_constant_in_switch
222223 switch (event.eventType) {
223224 case VideoEventType .initialized:
224225 value = value.copyWith (
Original file line number Diff line number Diff line change @@ -219,6 +219,7 @@ class MiniController extends ValueNotifier<VideoPlayerValue> {
219219 final Completer <void > initializingCompleter = Completer <void >();
220220
221221 void eventListener (VideoEvent event) {
222+ // ignore: missing_enum_constant_in_switch
222223 switch (event.eventType) {
223224 case VideoEventType .initialized:
224225 value = value.copyWith (
You can’t perform that action at this time.
0 commit comments