weightCoef property

int get weightCoef
override

@brief Edge weight coefficient.

Dart code snippet: @snippet location_manager_example.dart dart_GraphEdge_getWeightCoef

Implementation

int get weightCoef {
    final _getFfi = __lib.catchArgumentError(() => __lib.nativeLibrary.lookupFunction<
        Int32 Function(Pointer<Void>),
        int Function(Pointer<Void>)
      >('navigine_sdk_flutter_GraphEdge_weightCoef_get'));

    final _handle = this.handle;
    final _weightCoefHandle = _getFfi(_handle);
    final _result = navigine_sdk_flutter_int_FromFfi(_weightCoefHandle);
    navigine_sdk_flutter_int_ReleaseFfiHandle(_weightCoefHandle);
    return _result;
}