WriteableBindableProperty<TValue> constructor

WriteableBindableProperty<TValue>({
  1. PropertyValueChanged<TValue>? valueChanged,
})

创建可设置值的绑定属性

valueChanged 指定属性值变更后的回调方法

Implementation

WriteableBindableProperty({PropertyValueChanged<TValue>? valueChanged})
    : super(valueChanged: valueChanged);