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