chatActionTyping property
The user is typing a message
Implementation
ChatActionTyping? get chatActionTyping {
if (this is ChatActionTyping) {
return this as ChatActionTyping;
}
return null;
}
The user is typing a message
ChatActionTyping? get chatActionTyping {
if (this is ChatActionTyping) {
return this as ChatActionTyping;
}
return null;
}