All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.io.sentry.kotlin.multiplatform.protocol.SentryId.kt Maven / Gradle / Ivy

package io.sentry.kotlin.multiplatform.protocol

expect class SentryId(sentryIdString: String) : ISentryId {
    companion object {
        val EMPTY_ID: SentryId
    }
    override fun toString(): String
}

interface ISentryId {
    companion object {
        val EMPTY_ID: SentryId = SentryId("")
    }
    override fun toString(): String
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy