QChatCreateChannelParam constructor

QChatCreateChannelParam({
  1. required int serverId,
  2. required String name,
  3. required QChatChannelType type,
  4. String? custom,
  5. String? topic,
  6. QChatVisitorMode? visitorMode,
  7. QChatChannelMode? viewMode,
})

Implementation

QChatCreateChannelParam(
    {required this.serverId,
    required this.name,
    required this.type,
    this.custom,
    this.topic,
    this.visitorMode,
    this.viewMode});