getBlogCategoryById method
Gets a blog category by id
Implementation
Future<BlogCategory> getBlogCategoryById(int id) async {
final response = await _get('/api/blog/category/$id');
return BlogCategory.fromJson(response.data);
}
Gets a blog category by id
Future<BlogCategory> getBlogCategoryById(int id) async {
final response = await _get('/api/blog/category/$id');
return BlogCategory.fromJson(response.data);
}