InputData constructor

InputData(
  1. String varName, {
  2. String? postProcess(
    1. String? text
    ) = noSpacesAtEndAndNoSlashes,
  3. required String hint,
  4. String? value,
  5. String? verify(
    1. String? text
    ) = defaultVerification,
})

Implementation

InputData(this.varName,
    {this.postProcess = noSpacesAtEndAndNoSlashes,
    required this.hint,
    this.value,
    this.verify = defaultVerification});