ScaleQuestion constructor

ScaleQuestion({
  1. int? high,
  2. String? highLabel,
  3. int? low,
  4. String? lowLabel,
})

Implementation

ScaleQuestion({
  this.high,
  this.highLabel,
  this.low,
  this.lowLabel,
});