class InfographyRequestArgs { final int page; final String? q; final List? tag; final List? categories; const InfographyRequestArgs({ required this.page, this.categories, this.q, this.tag, }); }