TypedefDoc constructor

TypedefDoc({
  1. required String name,
  2. required String type,
  3. String? description,
  4. String? category,
  5. required String filePath,
  6. required int lineNumber,
})

Implementation

TypedefDoc({
  required this.name,
  required this.type,
  this.description,
  this.category,
  required this.filePath,
  required this.lineNumber,
});