JotformAnswer constructor

JotformAnswer({
  1. required String name,
  2. required int order,
  3. required String text,
  4. required JotformAnswerType type,
  5. String? timeFormat,
  6. String? inputType,
  7. int? emojiCount,
  8. List<String>? featureSet,
  9. List<Map<String, dynamic>>? dcolumns,
  10. List<Map<String, dynamic>>? drows,
  11. List<String>? mcolumns,
  12. List<String>? mrows,
  13. List<String>? toggleText,
  14. List<int>? colIds,
  15. List<int>? rowIds,
  16. int? scaleAmount,
  17. List<Map<String, dynamic>>? products,
  18. Map<String, String>? sublabels,
  19. required dynamic answer,
  20. String? prettyFormat,
})

Implementation

JotformAnswer({
  required this.name,
  required this.order,
  required this.text,
  required this.type,
  this.timeFormat,
  this.inputType,
  this.emojiCount,
  this.featureSet,
  this.dcolumns,
  this.drows,
  this.mcolumns,
  this.mrows,
  this.toggleText,
  this.colIds,
  this.rowIds,
  this.scaleAmount,
  this.products,
  this.sublabels,
  required this.answer,
  this.prettyFormat,
});