etebase_fetch_options_set_limit method

void etebase_fetch_options_set_limit(
  1. Pointer<EtebaseFetchOptions> this_,
  2. int limit
)

Limit the amount of items returned

@param this_ the object handle @param limit the limit to set

Implementation

void etebase_fetch_options_set_limit(
  ffi.Pointer<EtebaseFetchOptions> this_,
  int limit,
) {
  return _etebase_fetch_options_set_limit(
    this_,
    limit,
  );
}