apatrida
public fun String?.nullIfBlank(): String? = if (this.isNullOrBlank()) null else this public fun String?.nullIfEmpty(): String? = if (this.isNullOrEmpty()) null else this