Class is used for storing WiFi.
More...
Inherits Finalizable.
Class is used for storing WiFi.
Referenced from Sublocation.
Definition at line 22 of file wifi.dart.
◆ locationId
wifi's location identifier.
Dart code snippet:
int locationId = wifi.getLocationId();
print('WiFi location ID: $locationId');
Definition at line 44 of file wifi.dart.
◆ mac
wifi's mac.
Dart code snippet:
String? mac = wifi.getMac();
print('WiFi MAC: $mac');
Definition at line 74 of file wifi.dart.
◆ name
wifi's name.
Dart code snippet:
String? wifiName = wifi.getName();
print('WiFi name: $wifiName');
Definition at line 64 of file wifi.dart.
◆ point
wifi's X and Y coordinates in meters as Point (within the sublocation).
Dart code snippet:
Point? point = wifi.getPoint();
if (point != null) {
demonstratePointUsage(point);
}
Definition at line 34 of file wifi.dart.
◆ status
wifi's status. TransmitterStatus
Dart code snippet:
TransmitterStatus status = wifi.getStatus();
print('WiFi status: $status');
Definition at line 84 of file wifi.dart.
◆ sublocationId
| int get Wifi.sublocationId |
wifi's sublocation identifier.
Dart code snippet:
int sublocationId = wifi.getSublocationId();
print('WiFi sublocation ID: $sublocationId');
Definition at line 54 of file wifi.dart.
The documentation for this class was generated from the following file: