Skip to content

Instantly share code, notes, and snippets.

@skydoves
Created November 8, 2024 13:08
Show Gist options
  • Save skydoves/7b805aaa4392761f164159c679b92bc5 to your computer and use it in GitHub Desktop.
Save skydoves/7b805aaa4392761f164159c679b92bc5 to your computer and use it in GitHub Desktop.
string_companion
val String.Companion.Empty: String
get() = ""
// Usage
val fakeUser = User.createUser(name = String.Empty) // instead of User.createUser(name = "")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment