stop method

  1. @override
Future<Null> stop()
override

Stop this sensor NOTE: You need to set a method channel before using this method.

Implementation

@override
Future<Null> stop() {
  super.cancelBroadcastStream("on_call");
  super.cancelBroadcastStream("on_ringing");
  super.cancelBroadcastStream("on_busy");
  super.cancelBroadcastStream("on_free");
  return super.stop();
}