JotformForm constructor

JotformForm({
  1. required String title,
  2. required String id,
  3. required String username,
  4. required DateTime createdAt,
  5. required JotformFormStatus status,
  6. required bool nNew,
  7. required int height,
  8. Map<int, JotformAnswer> answers = const {},
  9. DateTime? updatedAt,
  10. DateTime? lastSubmission,
  11. int count = 0,
  12. required JotformFormType type,
  13. required bool favorite,
  14. required bool archived,
  15. required String url,
  16. required bool hasPayment,
  17. JotformFormPaymentProps? paymentProps,
})

Implementation

JotformForm({
  required this.title,
  required this.id,
  required this.username,
  required this.createdAt,
  required this.status,
  required this.nNew,
  required this.height,
  this.answers = const {},
  this.updatedAt,
  this.lastSubmission,
  this.count = 0,
  required this.type,
  required this.favorite,
  required this.archived,
  required this.url,
  required this.hasPayment,
  this.paymentProps,
});