point property
beacon's X and Y coordinates in meters as Point (within the sublocation).
Example:
// Get beacon point
Point? point = beacon.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_Beacon_point_get'));
final _pointHandle = _getFfi(this.ptr);
final _result = PointImpl.fromNative(_pointHandle);
exception.checkCallResult();
return _result;
}