PaginationQuestionModel constructor

PaginationQuestionModel({
  1. int? currentPage,
  2. int? pageNumber,
  3. int? nbrPage,
  4. int? nbrRecord,
  5. List<Object>? questionsList,
})

Implementation

PaginationQuestionModel({
  this.currentPage,
  this.pageNumber,
  this.nbrPage,
  this.nbrRecord,
  this.questionsList,
});