AstProxyApi constructor
AstProxyApi({
- required String name,
- required List<
Method> methods, - List<
String> documentationComments = const <String>[], - required List<
Constructor> constructors, - required List<
ApiField> fields, - TypeDeclaration? superClass,
- Set<
TypeDeclaration> interfaces = const <TypeDeclaration>{}, - SwiftProxyApiOptions? swiftOptions,
- KotlinProxyApiOptions? kotlinOptions,
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>{},
this.swiftOptions,
this.kotlinOptions,
});