fromOptionalPtr static method

Map<int, LocationInfo>? fromOptionalPtr(
  1. Pointer<Void> handle
)

Implementation

static Map<int, LocationInfo>? fromOptionalPtr(Pointer<Void> handle) =>
  fromPlatformIntMapNullable(handle, (nativeValue) => LocationInfoImpl.fromPointer(nativeValue, needFree: false, takeOwnership: false)!);