fromOptionalPtr static method

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

Implementation

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