class Community { final String name; final List? children; // Sub-communities Community({required this.name, this.children}); }