TextFieldComponent constructor

const TextFieldComponent({
  1. Key? key,
  2. required ComponentModel component,
  3. required String? value,
  4. required ValueChanged<String> onChanged,
})

Implementation

const TextFieldComponent({
  super.key,
  required this.component,
  required this.value,
  required this.onChanged,
});