applyWifiConfig method
Try to use credentials passed to sendWifiConfig to connect to an access point
Return true on success, false on failure
Implementation
@override
Future<bool> applyWifiConfig() {
if (_selectedSsidIndex == 1) {
return Future.value(false);
}
return Future.delayed(const Duration(milliseconds: 1000), () => true);
}