fromOptionalPtr static method

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

Implementation

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