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