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 _handle = this.handle;
final _beaconsHandle = _getFfi(_handle);
final _result = navigine_sdk_flutter_List_Beacon_FromFfi(_beaconsHandle);
navigine_sdk_flutter_List_Beacon_ReleaseFfiHandle(_beaconsHandle);
return _result;
}