sfw method

Future<void> sfw()

Marks the Submission as safe for work.

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

Implementation

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