heartbeat method

Stream<ChatCallEvents> heartbeat(
  1. ChatItemId id,
  2. ChatCallDeviceId deviceId
)

Returns heartbeat subscription used to keep MyUser in an OngoingCall.

Implementation

Stream<ChatCallEvents> heartbeat(ChatItemId id, ChatCallDeviceId deviceId) {
  Log.debug('heartbeat($id, $deviceId)', '$runtimeType');
  return _callsRepo.heartbeat(id, deviceId);
}