I am new to the android data binding and I was looking at the code which says, as bellow
@get:Bindable
var userIds: MutableList<Long> = mutableListOf()
private set(value) {
field = value
notifyPropertyChanged(BR.userIds)
}
so, what is the @get:Bindable does here. Is the @Bindable and @get:Bindable same?