setWiFiAPConfiguration static method

  1. @Deprecated("This is will only work with < Android SDK 26.")
void setWiFiAPConfiguration(
  1. Object poWiFiConfig
)

Set WiFi AP Configuaration

Implementation

@Deprecated("This is will only work with < Android SDK 26.")
static void setWiFiAPConfiguration(Object poWiFiConfig) async {
  final Map<String, bool> htArguments = Map();
  htArguments["wifi_config"] = poWiFiConfig as bool;
  await _channel.invokeMethod('setWiFiAPConfiguration', htArguments);
}