JotformForm constructor
JotformForm({
- required String title,
- required String id,
- required String username,
- required DateTime createdAt,
- required JotformFormStatus status,
- required bool nNew,
- required int height,
- Map<
int, JotformAnswer> answers = const {}, - DateTime? updatedAt,
- DateTime? lastSubmission,
- int count = 0,
- required JotformFormType type,
- required bool favorite,
- required bool archived,
- required String url,
- required bool hasPayment,
- 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,
});