width property
sublocation's width in meters.
Example:
// Get sublocation width in meters
double width = sublocation.getWidth();
print('Sublocation width: $width meters');
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 _widthHandle = _getFfi(this.ptr);
final _result = _widthHandle;
exception.checkCallResult();
return _result;
}