unlock method

Future<void> unlock()

Unlocks the Submission to allow for new Comments.

Implementation

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