lock method

Future<void> lock()

Locks the Submission to new Comments.

Implementation

Future<void> lock() async => _content.reddit.post(
    apiPath['lock'],
    {
      'id': _content.fullname,
    },
    discardResponse: true);