fromOptionalPtr static method

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

Implementation

static List<String>? fromOptionalPtr(Pointer<Void> handle) =>
  fromPlatformListNullable(handle, (element) => toPlatformFromPointerString(element, needFree: false)!);