point property
eddystone's X and Y coordinates in meters as Point (within the sublocation).
Example:
// Get Eddystone point
Point? point = eddystone.getPoint();
if (point != null) {
demonstratePointUsage(point);
}
Implementation
Point get point {
final _getFfi = __lib.catchArgumentError(() => __lib.nativeLibrary.lookupFunction<
PointNative Function(Pointer<Void>),
PointNative Function(Pointer<Void>)
>('navigine_sdk_flutter_Eddystone_point_get'));
final _pointHandle = _getFfi(this.ptr);
final _result = PointImpl.fromNative(_pointHandle);
exception.checkCallResult();
return _result;
}