EditTextValue constructor
EditTextValue({
- Key? key,
- required String name,
- required dynamic onTimeUpdated(),
- required String id,
- required bool isBeforeHeader,
- String? description,
- required Function getUpdatedTime,
- required OnValueChanged? onValueChanged,
- required Function getUpdatedValue,
- required String chosenValue,
- bool isReadOnly = false,
- bool long = false,
- Widget dateBuilder(
- int date
- 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);