I have kotlin data class
data class Client(
val name: String = "",
val email: String = "",
val phone: String ="") {
constructor():this("","","")}
I have firestore populate the data into the class just fine, however I am at a loss trying to figure out how to get the document id into the data class without having to set it in the document itself. Is this possible?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…