vertexes property
@brief List of connected vertexes @see GraphVertex "GraphVertex"
Dart code snippet: @snippet location_manager_example.dart dart_Graph_getVertices
Implementation
List<GraphVertex> get vertexes {
final _getFfi = __lib.catchArgumentError(() => __lib.nativeLibrary.lookupFunction<
Pointer<Void> Function(Pointer<Void>),
Pointer<Void> Function(Pointer<Void>)
>('navigine_sdk_flutter_Graph_vertexes_get'));
final _handle = this.handle;
final _vertexesHandle = _getFfi(_handle);
final _result = navigine_sdk_flutter_List_GraphVertex_FromFfi(_vertexesHandle);
navigine_sdk_flutter_List_GraphVertex_ReleaseFfiHandle(_vertexesHandle);
return _result;
}