getConnectionStateStream method
Implementation
@override
Stream getConnectionStateStream() {
try {
TextWriteReadController().appendText("open Notify Stream");
return connectionStateEventChannel.receiveBroadcastStream();
} catch(e) {
TextWriteReadController().appendText(e.toString());
rethrow;
}
}