length property
@brief Total lenth of the route path in meters.
Dart code snippet: @snippet route_manager_example.dart dart_RoutePath_getLength
Implementation
double get length {
final _getFfi = __lib.catchArgumentError(() => __lib.nativeLibrary.lookupFunction<
Float Function(Pointer<Void>),
double Function(Pointer<Void>)
>('navigine_sdk_flutter_RoutePath_length_get'));
final _handle = this.handle;
final _lengthHandle = _getFfi(_handle);
final _result = navigine_sdk_flutter_double_FromFfi(_lengthHandle);
navigine_sdk_flutter_double_ReleaseFfiHandle(_lengthHandle);
return _result;
}