Have the default Map constructor also check for `null` values. ```groovy @tvinke.bulletproof.transform.NonNull class Person { String name } new Person() // should also throws IllegalArgumentException: "Name can not be null" ```
Have the default Map constructor also check for
nullvalues.