fromOptionalPtr static method

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

Implementation

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