ptheocharis
02/27/2019, 5:49 PMdata class GreetingDto(
val greeting: String,
val name: String
)
then I get another error:
groovy.lang.GroovyRuntimeException: Could not find matching constructor for: app.greeting.GreetingDto(LinkedHashMap)
jbnizet
02/27/2019, 8:04 PMreturn new GreetingDto("Hello", "World")
tddmonkey
02/28/2019, 8:23 AMptheocharis
02/28/2019, 3:13 PM