updateComment method
Future<CommentActivityResult>
updateComment({
- required String token,
- required String targetId,
- required String commentId,
- required String body,
- String? category,
- List<
String> ? tags, - String? pushRedirectUrl,
override
Implementation
@override
Future<CommentActivityResult> updateComment({
required String token,
required String targetId,
required String commentId,
required String body,
String? category,
List<String>? tags,
String? pushRedirectUrl,
}) {
return datasource.updateComment(
token: token,
targetId: targetId,
commentId: commentId,
body: body,
category: category,
tags: tags,
pushRedirectUrl: pushRedirectUrl,
);
}