https://kotlinlang.org logo
m

myanmarking

02/28/2018, 3:19 PM
guys is there any way to do this:
Copy code
class ViewState(
            val selectorMinValue: Int,
            val selectorMaxValue: Int,
            val selectorSelectedValue: Int,
            val startTimeMinutes: Int,
            val endTimeMinutes: Int,
            private val daySelection_: BooleanArray
        ){
            val daySelection: BooleanArray
                get() = this.daySelection_.copyOf()
        }