commonMain.com.bselzer.ktx.intent.email.Email.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of intent-jvm Show documentation
Show all versions of intent-jvm Show documentation
Based on Android intents.
The newest version!
package com.bselzer.ktx.intent.email
data class Email(
val to: List,
val cc: List = emptyList(),
val bcc: List = emptyList(),
val subject: String? = null,
val body: String? = null
)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy