TextAnswerFormat constructor

const TextAnswerFormat({
  1. int? maxLines,
  2. String hint = '',
  3. String? defaultValue,
  4. String? validationRegEx = '^(?!\s*\$).+',
})

Implementation

const TextAnswerFormat({
  this.maxLines,
  this.hint = '',
  this.defaultValue,
  this.validationRegEx = '^(?!\s*\$).+',
}) : super();