/ SDKs / Flutter
SDKs
Chat SDKs Flutter v3
Chat SDKs Flutter
Chat SDKs
Flutter
Version 3
Sendbird Chat SDK v3 for Flutter is no longer supported as a new version is released. Check out our latest Chat SDK v4

Send typing indicators to other members

Copy link

If the startTyping() and endTyping() methods are called while the current user is typing a message in a group channel, onTypingStatusUpdated() in the channel event handler is invoked on all channel members' devices except the one that belongs to the user who is currently typing.

groupChannel.startTyping();
groupChannel.endTyping();

class MyClass with ChannelEventHandler {
    @override
    void onTypingStatusUpdated(GroupChannel channel) {
        // Refresh the typing status of channel members.
    }
}