ServerInfo constructor

ServerInfo({
  1. required String name,
  2. required List<int?> members,
  3. required String? owner,
  4. required int bumps,
  5. required List<String> tags,
  6. required Links links,
  7. String? avatar,
  8. String? shortDescription,
  9. String? longDescription,
  10. String? badge,
})

Implementation

ServerInfo({
  required this.name,
  required this.members,
  required this.owner,
  required this.bumps,
  required this.tags,
  required this.links,
  this.avatar,
  this.shortDescription,
  this.longDescription,
  this.badge
});