Class is used for storing location polygonal zones.
More...
Inherits Finalizable.
|
| Polygon get | polygon |
| | zone's list of points composing the polygonal zone Polygon
|
| |
| int get | locationId |
| | zone's location identifier.
|
| |
| int get | sublocationId |
| | zone's sublocationId identifier.
|
| |
| int get | id |
| | zone's identifier.
|
| |
| String get | name |
| | zone's name.
|
| |
| String get | color |
| | zone's color.
|
| |
| String get | alias |
| | zone's alias.
|
| |
Class is used for storing location polygonal zones.
Referenced from Sublocation.
Definition at line 20 of file zone.dart.
◆ alias
zone's alias.
Dart code snippet:
String? alias = zone.getAlias();
print('Zone alias: $alias');
Definition at line 92 of file zone.dart.
◆ color
zone's color.
Dart code snippet:
String? color = zone.getColor();
print('Zone color: $color');
Definition at line 82 of file zone.dart.
◆ id
zone's identifier.
Dart code snippet:
int zoneId = zone.getId();
print('Zone ID: $zoneId');
Definition at line 62 of file zone.dart.
◆ locationId
zone's location identifier.
Dart code snippet:
int locationId = zone.getLocationId();
print('Zone location ID: $locationId');
Definition at line 42 of file zone.dart.
◆ name
zone's name.
Dart code snippet:
String? zoneName = zone.getName();
print('Zone name: $zoneName');
Definition at line 72 of file zone.dart.
◆ polygon
zone's list of points composing the polygonal zone Polygon
Dart code snippet:
List<Point> polygon = zone.getPolygon();
print('Zone polygon points: ${polygon.length}');
Definition at line 32 of file zone.dart.
◆ sublocationId
| int get Zone.sublocationId |
zone's sublocationId identifier.
Dart code snippet:
int sublocationId = zone.getSublocationId();
print('Zone sublocation ID: $sublocationId');
Definition at line 52 of file zone.dart.
The documentation for this class was generated from the following file: