JvmField

@Target(allowedTargets = [AnnotationTarget.FIELD])
expect annotation class JvmField(source)

Instructs the Kotlin compiler not to generate getters/setters for this property and expose it as a field.

See the Kotlin language documentation for more information.

@Target(allowedTargets = [AnnotationTarget.FIELD])
actual annotation class JvmField

Instructs the Kotlin compiler not to generate getters/setters for this property and expose it as a field.

See the Kotlin language documentation for more information.

Constructors

Link copied to clipboard
expect fun JvmField()
actual fun JvmField()