connect method

Future<bool?> connect({
  1. required String ssid,
  2. String? bssid,
  3. String? password,
  4. bool withInternet = false,
  5. int timeoutInSeconds = 30,
})

Implementation

Future<bool?> connect({
  required String ssid,
  String? bssid,
  String? password,
  bool withInternet = false,
  int timeoutInSeconds = 30,
}) async {
  throw UnimplementedError('connect() has not been implemented.');
}