fromPointer static method

SearchToponymResultMetadataResponseInfo? fromPointer(
  1. Pointer<Void> ptr, {
  2. bool needFree = true,
})

Implementation

static SearchToponymResultMetadataResponseInfo? fromPointer(
    ffi.Pointer<ffi.Void> ptr,
    {core.bool needFree = true}) {
  if (ptr == ffi.nullptr) {
    return null;
  }
  final result = SearchToponymResultMetadataResponseInfoImpl.fromNative(
      ptr.cast<SearchToponymResultMetadataResponseInfoNative>().ref);

  if (needFree) {
    malloc.free(ptr);
  }
  return result;
}