mute method

Future<void> mute()

Mute the user (non-moderator) associated with the conversation.

Implementation

Future<void> mute() async => _internalUpdate((await reddit.post(
    apiPath['modmail_mute'].replaceAll(_kIdRegExp, id),
    <String, String>{})) as Map<dynamic, dynamic>);