QChatGetChannelsByPageResult constructor

QChatGetChannelsByPageResult(
  1. bool? hasMore,
  2. int? nextTimeTag, {
  3. required List<QChatChannel>? channels,
})

Implementation

QChatGetChannelsByPageResult(bool? hasMore, int? nextTimeTag,
    {required this.channels})
    : super(hasMore: hasMore ?? false, nextTimeTag: nextTimeTag);