Section constructor

Section({
  1. required String section,
  2. List<Object> fields = const [],
  3. String? description,
  4. List<String> keywords = const [],
})

Returns a new Section instance.

Implementation

Section({
  required this.section,
  this.fields = const [],
  this.description,
  this.keywords = const [],
});