override fun equals()

in amazon-chime-sdk/src/main/java/com/amazonaws/services/chime/sdk/meetings/audiovideo/Transcript.kt [64:74]


    override fun equals(other: Any?): Boolean {
        if (this === other) return true
        if (javaClass != other?.javaClass) return false

        other as TranscriptAlternative

        if (!items.contentEquals(other.items)) return false
        if (transcript != other.transcript) return false

        return true
    }