PaginatedCustomerFeedbackList constructor

PaginatedCustomerFeedbackList({
  1. int? count,
  2. String? next,
  3. String? previous,
  4. List<CustomerFeedback> results = const [],
})

Returns a new PaginatedCustomerFeedbackList instance.

Implementation

PaginatedCustomerFeedbackList({
  this.count,
  this.next,
  this.previous,
  this.results = const [],
});