fetchNextItemsInRow method

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

Implementation

fetchNextItemsInRow({
  required String rowId,
  int count = 10,
}) {
  return _bridge.fetchNextItemsInRow(rowId: rowId, count: count);
}