GuildChannelBuilder<T extends GuildChannel> constructor

GuildChannelBuilder<T extends GuildChannel>(
  1. {required String name,
  2. required ChannelType type,
  3. int? position,
  4. List<CreateBuilder<PermissionOverwrite>>? permissionOverwrites}
)

Implementation

GuildChannelBuilder({
  required this.name,
  required this.type,
  this.position,
  this.permissionOverwrites,
});