FormModel constructor

FormModel({
  1. required String id,
  2. required String path,
  3. required String title,
  4. required List<ComponentModel> components,
})

Constructs a FormModel instance.

Implementation

FormModel({required this.id, required this.path, required this.title, required this.components});