setTyping method
- String target,
- 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});
}
Say we are typing, so others can show it.
void setTyping(String target, TypingState state) {
_alive();
command({'type': 'set_typing', 'target': target, 'state': state.wire});
}