CommandRenameChannel constructor

const CommandRenameChannel({
  1. required String channel,
  2. required String new_name,
  3. required String? reason,
})

Implementation

const CommandRenameChannel({
  required this.channel,
  required this.new_name,
  required this.reason,
});