Bot constructor

Bot({
  1. required BotInfo information,
  2. required String id,
  3. required List links,
  4. String? shortCode,
  5. BotServer? server,
})

Implementation

Bot({
  required this.information,
  required this.id,
  required this.links,
  this.shortCode,
  this.server
});