beacons property
List of beacons, attached to this sublocation Beacon.
Example:
// Get beacons
List<Beacon> beacons = sublocation.getBeacons();
print('Number of beacons: ${beacons.length}');
Implementation
List<Beacon> get beacons {
final _getFfi = __lib.catchArgumentError(() => __lib.nativeLibrary.lookupFunction<
Pointer<Void> Function(Pointer<Void>),
Pointer<Void> Function(Pointer<Void>)
>('navigine_sdk_flutter_Sublocation_beacons_get'));
final _beaconsHandle = _getFfi(this.ptr);
final _result = ListBeaconImpl.fromNativePtr(_beaconsHandle);
exception.checkCallResult();
return _result;
}