@override List<TimelinePost> getPosts(String? category) => posts .where((element) => category == null || element.category == category) .toList();