Gets a blog post by id
Future<BlogPost> getBlogPostById(int id) async { final response = await _get('/api/blog/post/$id'); return BlogPost.fromJson(response.data); }