sendAction method

  1. @override
void sendAction(
  1. DOOActionType action
)
override

Send actions like user started typing

Implementation

@override
void sendAction(DOOActionType action) {
  clientService.sendAction(
      localStorage.contactDao.getContact()!.pubsubToken ?? "", action);
}