onChatTypingStatus property
A stream that emits chat typing status events.
This stream listens for chat typing status events. Note that this is deprecated
and it is recommended to use Mirrorfly.typingStatus
instead.
Usage example:
Mirrorfly.onChatTypingStatus.listen((chatTypingStatusData) {
// Handle the event for chat typing status
print("Chat typing status: $chatTypingStatusData");
});
Implementation
@Deprecated('Instead of use Mirrorfly.typingStatus')
static Stream<dynamic> get onChatTypingStatus =>
FlyChatFlutterPlatform.instance.onChatTypingStatus;