QChatGetChannelsByPageResult constructor Null safety

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);