StaticTextValue constructor

StaticTextValue({
  1. Key? key,
  2. required String name,
  3. required String id,
  4. required bool isBeforeHeader,
  5. String? description,
  6. Widget dateBuilder(
    1. int date,
    2. String id
    )?,
  7. int? time,
  8. required String chosenValue,
})

Implementation

StaticTextValue(
    {Key? key,
    required this.name,
    required this.id,
    required this.isBeforeHeader,
    this.description,
    this.dateBuilder,
    this.time,
    required this.chosenValue})
    : super(key: key) {
}