CallableDeclaration constructor

CallableDeclaration(
  1. String name,
  2. ArgumentDeclaration arguments,
  3. Iterable<Statement> children,
  4. FileSpan span, {
  5. SilentComment? comment,
})

Implementation

CallableDeclaration(
    this.name, this.arguments, Iterable<Statement> children, this.span,
    {this.comment})
    : super(List.unmodifiable(children));