ChannelUpdateTextRequest constructor

const ChannelUpdateTextRequest({
  1. required ChannelUpdateTextRequestTypeType type,
  2. String? topic,
  3. String? url,
  4. SnowflakeType? parentId,
  5. int? bitrate,
  6. int? userLimit,
  7. List<ChannelOverwriteRequest>? permissionOverwrites,
  8. bool? nsfw,
  9. bool? nsfwOverride,
  10. ContentWarningLevel? contentWarningLevel,
  11. String? contentWarningText,
  12. int? rateLimitPerUser,
  13. Base64ImageType? icon,
  14. SnowflakeType? ownerId,
  15. ChannelNicknameOverrides? nicks,
  16. String? rtcRegion,
  17. String? name,
})

Implementation

const ChannelUpdateTextRequest({
  required this.type,
  this.topic,
  this.url,
  this.parentId,
  this.bitrate,
  this.userLimit,
  this.permissionOverwrites,
  this.nsfw,
  this.nsfwOverride,
  this.contentWarningLevel,
  this.contentWarningText,
  this.rateLimitPerUser,
  this.icon,
  this.ownerId,
  this.nicks,
  this.rtcRegion,
  this.name,
});