getBlogs method
Future<GetBlogs>
getBlogs({
- String? distinctId,
- String? moderation,
- List<
String> ? tags, - String? category,
- String? q,
- String? page,
- 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,
);
}