MessageSearchDto constructor

MessageSearchDto({
  1. int? parentMessageId,
  2. bool? direction,
  3. int? sender,
  4. bool? file,
  5. String? words,
})

Implementation

MessageSearchDto({
  this.parentMessageId,
  this.direction,
  this.sender,
  this.file,
  this.words,
});