setWiFiAPSSIDHidden static method

  1. @Deprecated("This is will only work with < Android SDK 26.")
dynamic setWiFiAPSSIDHidden(
  1. bool hidden
)

Set whether the WiFi AP is hidden or not

Implementation

@Deprecated("This is will only work with < Android SDK 26.")
static setWiFiAPSSIDHidden(bool hidden) async {
  final Map<String, bool> htArguments = Map();
  htArguments["hidden"] = hidden;
  try {
    await _channel.invokeMethod('setSSIDHidden', htArguments);
  } on MissingPluginException catch (e) {
    print("MissingPluginException : ${e.toString()}");
  }
}