Flutter : Bad state: Stream has already been listened to

You should use the following.

StreamController<...> _controller = StreamController<...>.broadcast();

Leave a Comment