ListIndicesResponse constructor

const ListIndicesResponse({
  1. required List<FetchedIndex> items,
  2. int? nbPages,
})

Returns a new ListIndicesResponse instance.

Implementation

const ListIndicesResponse({
  required this.items,
  this.nbPages,
});