DocProperty constructor

const DocProperty({
  1. required String name,
  2. required String type,
  3. required String description,
  4. required List<String> features,
})

Implementation

const DocProperty({
  required this.name,
  required this.type,
  required this.description,
  required this.features,
});