FormModel constructor

FormModel({
  1. required String faName,
  2. required List<FormFieldModel> faFields,
  3. String? faEf,
  4. String? faVid,
  5. String? faSt,
  6. String? faHt,
  7. String? faTs,
  8. required bool faSu,
})

Implementation

FormModel({
  required this.faName,
  required this.faFields,
  this.faEf,
  this.faVid,
  this.faSt,
  this.faHt,
  this.faTs,
  required this.faSu,
}) : faId = const Uuid().v4();