poohbar
10/25/2017, 8:04 PMdata class Dog(
val age: Int,
val name: String?,
val list: List<String>
)
data class DogBuilder(
var age: Int? = null,
var name: String? = null,
var list: List<String>? = null
)
Is there any more concise way to define these? I have a lot of fields so there is a lot of repetition.