QChatGetMessageHistoryParam constructor

QChatGetMessageHistoryParam({
  1. required int serverId,
  2. required int channelId,
  3. int? limit,
  4. int? excludeMessageId,
  5. int? fromTime,
  6. bool reverse = false,
  7. int? toTime,
})

Implementation

QChatGetMessageHistoryParam(
    {required this.serverId,
    required this.channelId,
    this.limit,
    this.excludeMessageId,
    this.fromTime,
    this.reverse = false,
    this.toTime});