fetchMulti method

Future<EtebaseItemListResponse> fetchMulti(
  1. List<String> items, [
  2. EtebaseFetchOptions? fetchOptions
])

Fetch multiple Items using their UID

See etebase_item_manager_fetch for fetching a single item

@param this_ the object handle @param items the list of item uids to be fetched @param items_size the number of items @param fetch_options the EtebaseFetchOptions to fetch with

Implementation

Future<EtebaseItemListResponse> fetchMulti(
  List<String> items, [
  EtebaseFetchOptions? fetchOptions,
]) async =>
    EtebaseItemListResponse._(
      _isolate,
      _i4.Pointer.fromAddress(await _isolate.invoke<int>(
        #etebase_item_manager_fetch_multi,
        <dynamic>[
          _pointer.address,
          items,
          fetchOptions,
        ],
      )),
    );