eddystones property

List<Eddystone> get eddystones
override

@brief List of eddystones, attached to this sublocation @see Eddystone "Eddystone".

Dart code snippet: @snippet location_manager_example.dart dart_Sublocation_getEddystones

Implementation

List<Eddystone> get eddystones {
    final _getFfi = __lib.catchArgumentError(() => __lib.nativeLibrary.lookupFunction<
        Pointer<Void> Function(Pointer<Void>),
        Pointer<Void> Function(Pointer<Void>)
      >('navigine_sdk_flutter_Sublocation_eddystones_get'));

    final _handle = this.handle;
    final _eddystonesHandle = _getFfi(_handle);
    final _result = navigine_sdk_flutter_List_Eddystone_FromFfi(_eddystonesHandle);
    navigine_sdk_flutter_List_Eddystone_ReleaseFfiHandle(_eddystonesHandle);
    return _result;
}