Flutter: why my app started throwing exception?

382 Views Asked by At

Hello
I am working with the VideoPlayer plugin, everything is working good till before but now it started throwing this exception.
** _AssertionError ('package:flutter/src/services/message_codec.dart': Failed assertion: line 111 pos 15: 'code != null': is not true.) ** More Detail: error 01 error 02error 03 Log:enter image description here
The video player initializing code is as follows:

  @override
  void initState() {
    super.initState();
      _videoController =VideoPlayerController.asset("assets/videos/video_1.mp4")
      ..initialize().then((value) {
       _videoController.play();
        setState(() {
          
          isShowPlaying = false;
        });
      });

      
  }

Any kind of help will be highly appreciated!

0

There are 0 best solutions below