StaticTextValue constructor

StaticTextValue({
  1. Key? key,
  2. required String name,
  3. required String id,
  4. required bool isBeforeHeader,
  5. String? description,
  6. required String chosenValue,
})

Implementation

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