sendAction method

Future<void> sendAction(
  1. ChatwootActionType action
)

Send chatwoot action performed by user.

Example: User started typing

Implementation

Future<void> sendAction(ChatwootActionType action) async {
  _repository.sendAction(action);
}