stream property
We need a broadcast stream here as we want a temporary listener per message sent. As we can send message in an async manner we might have more than one listener at a time.
Implementation
late Stream<dynamic> stream;
We need a broadcast stream here as we want a temporary listener per message sent. As we can send message in an async manner we might have more than one listener at a time.
late Stream<dynamic> stream;