removeReplyComment method
Implementation
Future<bool> removeReplyComment(replyId) {
Log(
logName: 'RemoveReplyComment',
className: 'Comment',
methodName: 'removeReplyComment',
type: 'INFO',
text:
'{event: Remove Reply Comment, user: ${currentUser?.userPayloadId}, user is ${currentUser?.firstName} ${currentUser?.lastName}, reply id: $replyId',
);
return _httpService.removeReplyComment(replyId: replyId).then((data) async {
if (data.statusCode == 200) {
return true;
}
return false;
});
}