sendNotice method

void sendNotice(
  1. String target,
  2. String text
)

Send a notice, which by convention must never be auto-replied to.

Implementation

void sendNotice(String target, String text) {
  _alive();
  command({'type': 'send_notice', 'target': target, 'text': text});
}