Instance constructor

Instance({
  1. required Uri uri,
  2. required String title,
  3. required String description,
  4. required String email,
  5. required String version,
  6. required Uri? thumbnail,
  7. required dynamic urls,
  8. required InstanceStats stats,
  9. required dynamic languages,
  10. required Account? contactAccount,
  11. required String shortDescription,
  12. required bool registrations,
  13. required bool approvalRequired,
})

Implementation

Instance({
  required this.uri,
  required this.title,
  required this.description,
  required this.email,
  required this.version,
  required this.thumbnail,
  required this.urls,
  required this.stats,
  required this.languages,
  required this.contactAccount,
  required this.shortDescription,
  required this.registrations,
  required this.approvalRequired,
});