Loading...
Searching...
No Matches

Class is used for storing Eddystone. More...

Inherits Finalizable.

Public Attributes

Point get point
 eddystone's X and Y coordinates in meters as Point (within the sublocation).
 
int get locationId
 eddystone's location identifier.
 
int get sublocationId
 eddystone's sublocation identifier.
 
String get name
 eddystone's name.
 
String get namespaceId
 eddystone's namespaceId.
 
String get instanceId
 eddystone's instanceId.
 
int get power
 eddystone's power.
 
TransmitterStatus get status
 eddystone status. TransmitterStatus
 

Detailed Description

Class is used for storing Eddystone.

Referenced from Sublocation.

Definition at line 22 of file eddystone.dart.

Member Data Documentation

◆ instanceId

String get Eddystone.instanceId

eddystone's instanceId.

Dart code snippet:

// Get Eddystone instance ID
String? instanceId = eddystone.getInstanceId();
print('Eddystone instance ID: $instanceId');

Definition at line 84 of file eddystone.dart.

◆ locationId

int get Eddystone.locationId

eddystone's location identifier.

Dart code snippet

// Get Eddystone location ID
int locationId = eddystone.getLocationId();
print('Eddystone location ID: $locationId');

Definition at line 44 of file eddystone.dart.

◆ name

String get Eddystone.name

eddystone's name.

Dart code snippet:

// Get Eddystone name
String? eddystoneName = eddystone.getName();
print('Eddystone name: $eddystoneName');

Definition at line 64 of file eddystone.dart.

◆ namespaceId

String get Eddystone.namespaceId

eddystone's namespaceId.

Dart code snippet:

// Get Eddystone namespace ID
String? namespaceId = eddystone.getNamespaceId();
print('Eddystone namespace ID: $namespaceId');

Definition at line 74 of file eddystone.dart.

◆ point

Point get Eddystone.point

eddystone's X and Y coordinates in meters as Point (within the sublocation).

Dart code snippet:

// Get Eddystone point
Point? point = eddystone.getPoint();
if (point != null) {
demonstratePointUsage(point);
}

Definition at line 34 of file eddystone.dart.

◆ power

int get Eddystone.power

eddystone's power.

Dart code snippet:

// Get Eddystone power
int? power = eddystone.getPower();
if (power != null) {
print('Eddystone power: $power');
}

Definition at line 94 of file eddystone.dart.

◆ status

TransmitterStatus get Eddystone.status

eddystone status. TransmitterStatus

Dart code snippet:

// Get Eddystone status
TransmitterStatus status = eddystone.getStatus();
print('Eddystone status: $status');

Definition at line 104 of file eddystone.dart.

◆ sublocationId

int get Eddystone.sublocationId

eddystone's sublocation identifier.

Dart code snippet:

// Get Eddystone sublocation ID
int sublocationId = eddystone.getSublocationId();
print('Eddystone sublocation ID: $sublocationId');

Definition at line 54 of file eddystone.dart.


The documentation for this class was generated from the following file: