createFfiListPusher method

FfiListPusher createFfiListPusher()

Implementation

FfiListPusher createFfiListPusher() {
  final ffi.Pointer<ffi.Void> list_ptr =
      ffi.Pointer.fromAddress(_ffiListPusherCreate());
  final list_box = _Box(this, list_ptr, "drop_box_FfiListPusher");
  return FfiListPusher._(this, list_box);
}