ClassInfo constructor

ClassInfo({
  1. required String name,
  2. String? extendsClass,
  3. required List<String> implements,
  4. required List<String> annotations,
  5. required List<MethodInfo> methods,
})

Implementation

ClassInfo({
  required this.name,
  this.extendsClass,
  required this.implements,
  required this.annotations,
  required this.methods,
});