setTyping method

void setTyping(
  1. String target,
  2. TypingState state
)

Say we are typing, so others can show it.

Implementation

void setTyping(String target, TypingState state) {
  _alive();
  command({'type': 'set_typing', 'target': target, 'state': state.wire});
}