getNativePtr static method

Pointer<Void> getNativePtr(
  1. GraphVertex? obj
)

Implementation

static Pointer<Void> getNativePtr(GraphVertex? obj) {
    if (obj == null) return Pointer<Void>.fromAddress(0);
    return (obj as GraphVertex$Impl).ptr;
}