Bot constructor

const Bot({
  1. required String nick,
  2. required String? id,
  3. required bool from_config,
  4. required List<BotCommand> commands,
})

Implementation

const Bot({
  required this.nick,
  required this.id,
  required this.from_config,
  required this.commands,
});