updateBlogPost method
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,
})
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.',
);
}