redactMessage method
Ask the server to delete a message.
Implementation
void redactMessage(String target, String msgid, {String? reason}) {
_alive();
command({
'type': 'redact_message',
'target': target,
'msgid': msgid,
'reason': reason,
});
}