EditTextValue constructor

EditTextValue({
  1. Key? key,
  2. required String name,
  3. required String id,
  4. required bool isBeforeHeader,
  5. String? description,
  6. required OnValueChanged onValueChanged,
  7. required String chosenValue,
  8. int? debounceTime,
})

Implementation

EditTextValue(
    {Key? key,
    required this.name,
    required this.id,
    required this.isBeforeHeader,
    this.description,
    required this.onValueChanged,
    required this.chosenValue,
    this.debounceTime})
    : super(key: key);