Copier la fonction à Kotlin ne travaillant pas avec LiveData

fun copy(a: Int = this.a, bar: Bar = this.bar, list: MutableList<Int> = this.list) = Foo(a, bar, list)

fun copy(x: Int = this.x) = Bar(x)
Beautiful Buzzard