fromNativePtr static method

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

Implementation

static List<String> fromNativePtr(Pointer<Void> handle) =>
  fromPlatformList(handle, (element) => toPlatformFromPointerString(element, needFree: false)!);