connectByPrefix method
Connects to an open Wi-Fi network whose SSID starts with ssidPrefix.
Implementation
@override
Future<bool?> connectByPrefix(String ssidPrefix, {bool saveNetwork = false}) {
return _connect(() => PluginWifiConnect.connectByPrefix(ssidPrefix,
saveNetwork: saveNetwork));
}