getBlogs method

  1. @override
Future<GetBlogs> getBlogs({
  1. String? distinctId,
  2. String? moderation,
  3. List<String>? tags,
  4. String? category,
  5. String? q,
  6. String? page,
  7. String? limit,
})
override

Implementation

@override
Future<GetBlogs> getBlogs({
  String? distinctId,
  String? moderation,
  List<String>? tags,
  String? category,
  String? q,
  String? page,
  String? limit,
}) {
  return datasource.getBlogs(
    distinctId: distinctId,
    moderation: moderation,
    tags: tags,
    category: category,
    q: q,
    page: page,
    limit: limit,
  );
}