EditTextValue constructor

EditTextValue({
  1. Key? key,
  2. required String name,
  3. required dynamic onTimeUpdated(
    1. int
    ),
  4. required String id,
  5. required bool isBeforeHeader,
  6. String? description,
  7. required Function getUpdatedTime,
  8. required OnValueChanged? onValueChanged,
  9. required Function getUpdatedValue,
  10. required String chosenValue,
  11. bool isReadOnly = false,
  12. bool long = false,
  13. Widget dateBuilder(
    1. int date
    )?,
  14. int? time,
})

Implementation

EditTextValue({
  Key? key,
  required this.name,
  required this.onTimeUpdated,
  required this.id,
  required this.isBeforeHeader,
  this.description,
  required this.getUpdatedTime,
  required this.onValueChanged,
  required this.getUpdatedValue,
  required this.chosenValue,

  this.isReadOnly = false,
  this.long = false,
  this.dateBuilder,

  this.time,
}) : super(key: key);