updateComment method

  1. @override
Future<CommentActivityResult> updateComment({
  1. required String token,
  2. required String targetId,
  3. required String commentId,
  4. required String body,
  5. String? category,
  6. List<String>? tags,
  7. 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,
  );
}