IntegerAnswerFormat constructor

const IntegerAnswerFormat({
  1. int? defaultValue,
  2. String hint = '',
  3. int min = minInt,
  4. int max = maxInt,
  5. String? question,
  6. String? answerType = type,
})

Implementation

const IntegerAnswerFormat({
  this.defaultValue,
  this.hint = '',
  this.min = minInt,
  this.max = maxInt,
  super.question,
  super.answerType = type,
}) : super();