createOrNull

@ExperimentalSince(version = KotoolsTypesVersion.V4_5_0)
fun createOrNull(value: Any): NotBlankString?

Creates a NotBlankString from the string representation of the specified value, or returns null if its string representation is blank.


Calling from Kotlin

Here's an example of calling this function from Kotlin code:

val actual: NotBlankString? =
    NotBlankString.createOrNull("Kotools Types")
assertNotNull(actual)

The NotBlankString type being an inline value class, this function is not available yet for Java users.