orNull<Y extends RType> static method

NativeMemoryPointer<Y>? orNull<Y extends RType>(
  1. Pointer<NativeType>? p
)

Implementation

static NativeMemoryPointer<Y>? orNull<Y extends RType>(Pointer? p)
  => p == null ? null : .new(p);