sendAction method

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

Send a CTCP ACTION, the third-person form.

Implementation

void sendAction(String target, String text) {
  _alive();
  command({'type': 'send_action', 'target': target, 'text': text});
}