FormTemplateLayout constructor

FormTemplateLayout({
  1. required String form,
  2. List<Section> sections = const [],
  3. String? description,
  4. List<String> keywords = const [],
})

Returns a new FormTemplateLayout instance.

Implementation

FormTemplateLayout({
  required this.form,
  this.sections = const [],
  this.description,
  this.keywords = const [],
});