setTypingStatus property
A stream to set the typing status of a user.
This stream allows setting the typing status of a user. Note that this is deprecated
and it is recommended to use Mirrorfly.typingStatus
instead.
Usage example:
Mirrorfly.setTypingStatus.listen((typingStatusData) {
// Handle the event to set the typing status
print("Set typing status: $typingStatusData");
});
Implementation
@Deprecated('Instead of use Mirrorfly.typingStatus')
static Stream<dynamic> get setTypingStatus =>
FlyChatFlutterPlatform.instance.setTypingStatus;