sendAction method

Future<void> sendAction(
  1. RuutActionType action
)

Send ruut action performed by user.

Example: User started typing

Implementation

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