func isGcch()

in sdk/communication/AzureCommunicationChat/Source/NotificationUtils/IdentityUtil.swift [68:72]


func isGcch(id: String) -> Bool {
    let gcchTeamsUserPrefix = "gcch:"
    let gcchAcsUserPrefix = "gcch-acs:"
    return (id.starts(with: gcchTeamsUserPrefix) || id.starts(with: gcchAcsUserPrefix))
}