You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For the Java DSL you can define ingredients as an optional. So Optional<String> myIngredient
For the Kotlin DSL this also works. However, it would be nice if we could use nullable types instead. I tried using myIngredient: String? but that doesn't work.
The text was updated successfully, but these errors were encountered:
For the Java DSL you can define ingredients as an optional. So
Optional<String> myIngredient
For the Kotlin DSL this also works. However, it would be nice if we could use nullable types instead. I tried using
myIngredient: String?
but that doesn't work.The text was updated successfully, but these errors were encountered: