MessageKeywordSearchConfig constructor

MessageKeywordSearchConfig({
  1. required String? keyword,
  2. int? fromTime,
  3. int? toTime,
  4. int? sessionLimit,
  5. int? msgLimit,
  6. bool? asc,
  7. List<String>? p2pList,
  8. List<String>? teamList,
  9. List<String>? senderList,
  10. List<NIMMessageType>? msgTypeList,
  11. List<int>? msgSubtypeList,
})

Implementation

MessageKeywordSearchConfig(
    {required this.keyword,
    this.fromTime,
    this.toTime,
    this.sessionLimit,
    this.msgLimit,
    this.asc,
    this.p2pList,
    this.teamList,
    this.senderList,
    this.msgTypeList,
    this.msgSubtypeList});