setOptions static method
Set configurable options
showPowerAlert
Whether to show the power alert (iOS & MacOS only). i.e. CBCentralManagerOptionShowPowerAlertKey To set this option you must call this method before any other method in this package. See: https://developer.apple.com/documentation/corebluetooth/cbcentralmanageroptionshowpoweralertkey This option has no effect on Android.
Implementation
static Future<void> setOptions({
bool showPowerAlert = true,
}) async {
await _invokeMethod('setOptions', {"show_power_alert": showPowerAlert});
}