ListQuestionsResponse constructor

ListQuestionsResponse({
  1. String? nextPageToken,
  2. List<Question>? questions,
  3. int? totalSize,
})

Implementation

ListQuestionsResponse({
  this.nextPageToken,
  this.questions,
  this.totalSize,
});