Constructor constructor

Constructor(
  1. Type type, {
  2. List<DocComment> docComments = const [],
  3. List<Annotation> annotations = const [],
  4. bool external = false,
  5. bool constant = false,
  6. bool factory = false,
  7. String? name,
  8. ConstructorParameters? parameters,
  9. Initializers? initializers,
  10. Block? body,
})

Implementation

Constructor(this.type,
    {this.docComments = const [],
    this.annotations = const [],
    this.external = false,
    this.constant = false,
    this.factory = false,
    String? name,
    this.parameters,
    this.initializers,
    this.body})
    : name = name == null ? null : IdentifierStartingWithLowerCase(name);