ChildProperty constructor

ChildProperty({
  1. required String name,
  2. String? description,
  3. required List<String> childTagNames,
  4. bool ordered = false,
})

Implementation

ChildProperty({required super.name, super.description, required List<String> childTagNames, this.ordered = false})
  : _childTagNames = childTagNames;