ConstructorDoc constructor

ConstructorDoc({
  1. String? name,
  2. String? description,
  3. bool isConst = false,
  4. bool isFactory = false,
  5. List<ParameterDoc> parameters = const [],
  6. List<CodeBlock> codeExamples = const [],
})

Implementation

ConstructorDoc({
  this.name,
  this.description,
  this.isConst = false,
  this.isFactory = false,
  this.parameters = const [],
  this.codeExamples = const [],
});