stopAdvertising method

Future<void> stopAdvertising()

Stop Advertising

This doesn't disconnect from any connected Endpoint

For disconnection use stopAllEndpoints or disconnectFromEndpoint

Implementation

Future<void> stopAdvertising() async {
  await _channel.invokeMethod('stopAdvertising');
}