arrow property

IconMapObject get arrow
override

@brief Icon map object representing user arrow.

Dart code snippet: @snippet location_window_common_example.dart dart_UserLocationView_getArrow

Implementation

IconMapObject get arrow {
    final _getFfi = __lib.catchArgumentError(() => __lib.nativeLibrary.lookupFunction<
        Pointer<Void> Function(Pointer<Void>),
        Pointer<Void> Function(Pointer<Void>)
      >('navigine_sdk_flutter_UserLocationView_arrow_get'));

    final _handle = this.handle;
    final _arrowHandle = _getFfi(_handle);
    final _result = navigine_sdk_flutter_IconMapObject_FromFfi(_arrowHandle);
    navigine_sdk_flutter_IconMapObject_ReleaseFfiHandle(_arrowHandle);
    return _result;
}