fromOptionalPtr static method

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

Implementation

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