wifis property
List of wifis, attached to this sublocation Wifi.
Example:
// Get WiFi access points
List<Wifi> wifis = sublocation.getWifis();
print('Number of WiFi access points: ${wifis.length}');
Implementation
List<Wifi> get wifis {
final _getFfi = __lib.catchArgumentError(() => __lib.nativeLibrary.lookupFunction<
Pointer<Void> Function(Pointer<Void>),
Pointer<Void> Function(Pointer<Void>)
>('navigine_sdk_flutter_Sublocation_wifis_get'));
final _wifisHandle = _getFfi(this.ptr);
final _result = ListWifiImpl.fromNativePtr(_wifisHandle);
exception.checkCallResult();
return _result;
}