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 _heightHandle = _getFfi(this.ptr);
final _result = _heightHandle;
exception.checkCallResult();
return _result;
}