Is Moshi supposed to ignore `@NotNull`/`@Nullable`...
# squarelibraries
b
Is Moshi supposed to ignore `@NotNull`/`@Nullable` annotations when it’s creating an object instance?
Copy code
data class Created(val id: Int)

adapter.fromJson("{}").toString() // Created(id = null)