ListResponse constructor

const ListResponse({
  1. required List<String> items,
  2. required int total,
  3. required int page,
})

Implementation

const ListResponse({
  required this.items,
  required this.total,
  required this.page,
});