height property
sublocation's height in meters.
Example:
// Get sublocation height in meters
double height = sublocation.getHeight();
print('Sublocation height: $height meters');
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;
}