inCall property

set inCall (RxBool inCall)

Sets the reactive inCall indicator, determining whether AudioCallButton and VideoCallButton buttons should be enabled or not.

Implementation

set inCall(RxBool inCall) {
  if (_settings?.value?.callButtonsPosition == CallButtonsPosition.more &&
      onCall != null) {
    _updateButtons(inCall.value);
    _inCallWorker?.dispose();
    _inCallWorker = ever(inCall, _updateButtons);
  }
}