sendAction method

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

Send a CTCP ACTION, the third-person form.

Implementation

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