nsfw method

Future<void> nsfw()

Marks the Submission as not safe for work.

Both the Submission author and users with moderation rights for this submission can set this flag.

Implementation

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