location property
@brief location's identifier to which the sublocation belongs.
Dart code snippet: @snippet location_manager_example.dart dart_Sublocation_getLocation
Implementation
int get location {
final _getFfi = __lib.catchArgumentError(() => __lib.nativeLibrary.lookupFunction<
Int32 Function(Pointer<Void>),
int Function(Pointer<Void>)
>('navigine_sdk_flutter_Sublocation_location_get'));
final _handle = this.handle;
final _locationHandle = _getFfi(_handle);
final _result = navigine_sdk_flutter_int_FromFfi(_locationHandle);
navigine_sdk_flutter_int_ReleaseFfiHandle(_locationHandle);
return _result;
}