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. bool isReadOnly = false,
  9. bool long = false,
  10. Widget dateBuilder(
    1. int date
    )?,
  11. int? time,
})

Implementation

EditTextValue({
  Key? key,
  required this.name,
  required this.id,
  required this.isBeforeHeader,
  this.description,
  required this.onValueChanged,
  required this.chosenValue,
  this.isReadOnly = false,
  this.long = false,
  this.dateBuilder,
  this.time,
}) : super(key: key) {
}