DataBindingField constructor

const DataBindingField({
  1. Key? key,
  2. required String text,
  3. required ValueChanged<String> onUpdate,
  4. bool allowExpression = true,
})

Implementation

const DataBindingField({
  super.key,
  required this.text,
  required this.onUpdate,
  this.allowExpression = true,
});