MessageData constructor

const MessageData({
  1. List<Message>? messageList,
  2. int? totalPages,
  3. int? totalElements,
  4. bool? last,
  5. int? numberOfElements,
  6. bool? first,
  7. bool? empty,
})

Implementation

const MessageData({
  this.messageList,
  this.totalPages,
  this.totalElements,
  this.last,
  this.numberOfElements,
  this.first,
  this.empty,
}) : super();