fetchNextItemsInRow method

dynamic fetchNextItemsInRow({
  1. required String rowId,
  2. required int count,
})

Implementation

fetchNextItemsInRow({
  required String rowId,
  required int count,
}) {
  callFunction('fetchNextItemsInRow', [rowId, count], (payload) => null, errorPayload: CallFunctionErrorPayload(messageId: 'subscribe-to-items-in-row:$rowId', type: 'callback'));
}