class NewsRequestArgs { final int page; final String? startDate; final String? endDate; final String? search; final List? categories; const NewsRequestArgs({ required this.page, this.startDate, this.endDate, this.search, this.categories, }); }