fromOptionalPtr static method

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

Implementation

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