TextAnswerFormat constructor

const TextAnswerFormat({
  1. int? maxLines,
  2. String hint = '',
  3. String? validationRegEx = r'^(?!s*$).+',
  4. String? question,
  5. String? answerType = type,
})

Implementation

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