reply method

Future<Comment> reply(
  1. String body
)

Reply to the object.

body is the markdown formatted content for a comment. Returns a Comment for the newly created comment.

Implementation

Future<Comment> reply(String body) async => (await reddit.post(
    apiPath['comment'],
    {'text': body, 'thing_id': fullname, 'api_type': 'json'}))[0];