optIn method

Future<void> optIn()

Opt-in the current User to seeing the quarantined Subreddit.

Implementation

Future<void> optIn() async {
  final data = {'sr_name': _subreddit.displayName};
  await _subreddit.reddit
      .post(apiPath['quarantine_opt_in'], data, discardResponse: true);
}