fromNativePtr static method

List<LogInfo> fromNativePtr(
  1. Pointer<Void> handle
)

Implementation

static List<LogInfo> fromNativePtr(Pointer<Void> handle) =>
  fromPlatformList(handle, (element) => LogInfoImpl.fromPointer(element, needFree: false, takeOwnership: false)!);