width property

double get width
override

@brief sublocation's width in meters.

Dart code snippet: @snippet location_manager_example.dart dart_Sublocation_getWidth

Implementation

double get width {
    final _getFfi = __lib.catchArgumentError(() => __lib.nativeLibrary.lookupFunction<
        Float Function(Pointer<Void>),
        double Function(Pointer<Void>)
      >('navigine_sdk_flutter_Sublocation_width_get'));

    final _handle = this.handle;
    final _widthHandle = _getFfi(_handle);
    final _result = navigine_sdk_flutter_double_FromFfi(_widthHandle);
    navigine_sdk_flutter_double_ReleaseFfiHandle(_widthHandle);
    return _result;
}