stopServiceAdvertising static method

Future<bool> stopServiceAdvertising()

Implementation

static Future<bool> stopServiceAdvertising() async {
  try {
    final bool result = await _channel.invokeMethod('stopServiceAdvertising');
    return result;
  } on PlatformException {
    return false;
  }
}