height property

double get height
override

@brief sublocation's height in meters.

Dart code snippet: @snippet location_manager_example.dart dart_Sublocation_getHeight

Implementation

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

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