StaticTextParser constructor

StaticTextParser(
  1. String name,
  2. String? description,
  3. String id,
  4. dynamic chosenValue,
  5. OnValueChanged onValueChanged,
  6. bool isBeforeHeader,
  7. int index,
)

Implementation

StaticTextParser(this.name, this.description, this.id, this.chosenValue,
    this.onValueChanged, this.isBeforeHeader, this.index) {
  onValueChangedLocal = (String id, dynamic value) {
    chosenValue = value;
    onValueChanged(id, value);
  };
}