ClassInfo constructor

const ClassInfo({
  1. required String name,
  2. List<String> superTypes = const [],
  3. List<String> interfaces = const [],
  4. List<String> mixins = const [],
  5. List<String> methods = const [],
  6. List<String> fields = const [],
  7. List<String> constructors = const [],
  8. bool isAbstract = false,
})

Implementation

const ClassInfo({
  required super.name,
  this.superTypes = const [],
  this.interfaces = const [],
  this.mixins = const [],
  this.methods = const [],
  this.fields = const [],
  this.constructors = const [],
  this.isAbstract = false,
});