fromNativePtr static method

List<Point> fromNativePtr(
  1. Pointer<Void> handle
)

Implementation

static List<Point> fromNativePtr(Pointer<Void> handle) =>
  fromPlatformList(handle, (element) => PointImpl.fromPointer(element, needFree: false, takeOwnership: false)!);