JotformQuestion constructor

JotformQuestion({
  1. String? headerType,
  2. String? imageAlign,
  3. required String name,
  4. required int order,
  5. required int qid,
  6. required String text,
  7. String? textAlign,
  8. required JotformFormType type,
  9. String? verticalTextAlign,
})

Implementation

JotformQuestion({
  this.headerType,
  this.imageAlign,
  required this.name,
  required this.order,
  required this.qid,
  required this.text,
  this.textAlign,
  required this.type,
  this.verticalTextAlign,
});