QChatCreateChannelParam constructor Null safety

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

Implementation

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