func toCallCompositeCallState()

in AzureCommunicationUI/sdk/AzureCommunicationUICalling/Sources/Service/Calling/AzureCommunicationCalling/ACSCallingStateExtension.swift [38:61]


    func toCallCompositeCallState() -> CallState {
        switch self {
        case .none:
            return CallState.none
        case .earlyMedia:
            return CallState.earlyMedia
        case .connecting:
            return CallState.connecting
        case .ringing:
            return CallState.ringing
        case .connected:
            return CallState.connected
        case .localHold:
            return CallState.localHold
        case .disconnecting:
            return CallState.disconnecting
        case .disconnected:
            return CallState.disconnected
        case .inLobby:
            return CallState.inLobby
        case .remoteHold:
            return CallState.remoteHold
        }
    }