etebase_collection_set_content method

int etebase_collection_set_content(
  1. Pointer<EtebaseCollection> this_,
  2. Pointer<Void> content,
  3. int content_size
)

Set the content of the collection

@param this_ the object handle @param content the content of the collection as a byte array @param content_size the content size

Implementation

int etebase_collection_set_content(
  ffi.Pointer<EtebaseCollection> this_,
  ffi.Pointer<ffi.Void> content,
  int content_size,
) {
  return _etebase_collection_set_content(
    this_,
    content,
    content_size,
  );
}