getComment method

Future<AmityComment> getComment({
  1. required String commentId,
})

Get AmityReaction for the comment Id

Implementation

Future<AmityComment> getComment({required String commentId}) {
  return serviceLocator<CommentGetUseCase>().get(commentId);
}