dispose method

Future dispose ()

Implementation

static dispose() async {
  try {
    await _channel.invokeMethod('stopDiscoveryController');
  } on PlatformException catch (e) {
    print(e.details);
  }
}