AstProxyApi constructor

AstProxyApi({
  1. required String name,
  2. required List<Method> methods,
  3. List<String> documentationComments = const <String>[],
  4. required List<Constructor> constructors,
  5. required List<ApiField> fields,
  6. TypeDeclaration? superClass,
  7. Set<TypeDeclaration> interfaces = const <TypeDeclaration>{},
})

Parametric constructor for AstProxyApi.

Implementation

AstProxyApi({
  required super.name,
  required super.methods,
  super.documentationComments = const <String>[],
  required this.constructors,
  required this.fields,
  this.superClass,
  this.interfaces = const <TypeDeclaration>{},
});