updateBlogPost method

Future<BlogPost> updateBlogPost({
  1. required String authToken,
  2. required int blogPostId,
  3. String? title,
  4. String? content,
  5. String? excerpt,
  6. String? slug,
  7. String? featuredImage,
  8. String? author,
  9. bool? isPublished,
  10. String? publishedAt,
})

Implementation

Future<BlogPost> updateBlogPost({
  required String authToken,
  required int blogPostId,
  String? title,
  String? content,
  String? excerpt,
  String? slug,
  String? featuredImage,
  String? author,
  bool? isPublished,
  String? publishedAt,
}) {
  throw UnsupportedError(
    'Blog authoring requires a future native bridge method.',
  );
}