typingStatus property

Stream get typingStatus

A stream that emits typing status events.

This stream listens for typing status events on the platform. Each event contains information about the typing status of a user. Use this stream to update your UI based on typing status.

Usage example:

Mirrorfly.typingStatus.listen((typingStatusData) {
  // Handle the event for typing status
  print("Typing status: $typingStatusData");
});

Implementation

static Stream<dynamic> get typingStatus =>
    FlyChatFlutterPlatform.instance.setTypingStatus;