createFfiListComment method

FfiListComment createFfiListComment()

Implementation

FfiListComment createFfiListComment() {
  final ffi.Pointer<ffi.Void> list_ptr = ffi.Pointer.fromAddress(
    _ffiListCommentCreate(),
  );
  final list_box = _Box(this, list_ptr, "drop_box_FfiListComment");
  return FfiListComment._(this, list_box);
}