ClassDeclaration constructor

ClassDeclaration(
  1. String? name,
  2. String? superClause,
  3. List<Expression?>? body, {
  4. Map? ast,
})

Implementation

ClassDeclaration(this.name, this.superClause, this.body, {Map? ast})
    : super(ast: ast);