speechSubscription property

StreamSubscription<SpeechResult> speechSubscription
getter/setter pair

Implementation

StreamSubscription<SpeechResult> speechSubscription =
    _speechListenerController.stream.asBroadcastStream().listen(
        (data) {
          print("DataReceived: " + data.result!);
        },
        onDone: () {},
        onError: (error) {
          print("Some Error");
        });