findCommentById abstract method

Future<FindCommentResponse> findCommentById(
  1. String commentId
)

Returns a FindCommentResponse for a comment with id commentId

Upon success a comment object is provided and error is set to null

In case of error a ResponseError is set and no comment is provided

Implementation

Future<FindCommentResponse> findCommentById(String commentId);