Method.abstract constructor

Method.abstract(
  1. String name, {
  2. List<DocComment> docComments = const [],
  3. List<Annotation> annotations = const [],
  4. Type? type,
  5. PropertyAccessor? propertyAccessor,
  6. Parameters? parameters,
  7. Asynchrony? asynchrony,
})

Implementation

Method.abstract(
  String name, {
  this.docComments = const [],
  this.annotations = const [],
  this.type,
  this.propertyAccessor,
  this.parameters,
  this.asynchrony,
})  : abstract = true,
      static = false,
      final$ = false,
      name = IdentifierStartingWithLowerCase(name),
      body = null;