const
Subreddit(- {required String? id,
- required String title,
- required String? description,
- required String fullName,
- required String? iconImage,
- required String? bannerImage,
- required int? subscriberCount,
- required int? activeUserCount,
- required bool over18}
)
Implementation
const Subreddit({
required this.id,
required this.title,
required this.description,
required this.fullName,
required this.iconImage,
required this.bannerImage,
required this.subscriberCount,
required this.activeUserCount,
required this.over18
});