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
At the moment it's a little messy with creating new instances of the POJOs with the builders. Could we get an option that would create an additional constructor to define the required fields?
Right now to create something of the following schema:
Obj { name: asdf, age: 32; state:NC}
You would have to invoke it by: (with builders enabled)
new Obj().withName("asdf").withAge(32).withState("NC")