BotInfo constructor

BotInfo({
  1. required int bumps,
  2. required int added,
  3. required int permissions,
  4. String? prefix,
  5. List<String?>? tags,
  6. List<String?>? developers,
  7. Links? links,
  8. String? library,
  9. String? shortDescription,
  10. String? longDescription,
  11. String? badge,
  12. BotStats? stats,
  13. String? status,
})

Implementation

BotInfo({
  required this.bumps,
  required this.added,
  required this.permissions,
  this.prefix,
  this.tags,
  this.developers,
  this.links,
  this.library,
  this.shortDescription,
  this.longDescription,
  this.badge,
  this.stats,
  this.status,
});