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