fromOptionalPtr static method

List<GraphVertex>? fromOptionalPtr(
  1. Pointer<Void> handle
)

Implementation

static List<GraphVertex>? fromOptionalPtr(Pointer<Void> handle) =>
  fromPlatformListNullable(handle, (element) => GraphVertex$Impl.fromExternalPtr(element));