MessageSearchOptions constructor

const MessageSearchOptions({
  1. required List<MessageType> types,
  2. String? from,
  3. int ts = -1,
  4. int count = 10,
  5. EMSearchDirection direction = EMSearchDirection.Up,
})

Implementation

const MessageSearchOptions({
  required this.types,
  this.from,
  this.ts = -1,
  this.count = 10,
  this.direction = EMSearchDirection.Up,
});