ClassMirror constructor

const ClassMirror({
  1. required String name,
  2. bool isEnum = false,
  3. List? values,
  4. List<Annotation>? annotations,
  5. Map<String, FunctionMirror>? constructors,
  6. Map<String, DeclarationMirror>? fields,
  7. List<String>? getters,
  8. List<String>? setters,
  9. Map<String, FunctionMirror>? methods,
  10. Type superclass = Object,
  11. List<Type> superinterfaces = const [],
  12. bool isAbstract = false,
})

Implementation

const ClassMirror({
  required String name,
  this.isEnum = false,
  this.values,
  List<Annotation>? annotations,
  this.constructors,
  this.fields,
  this.getters,
  this.setters,
  this.methods,
  this.superclass = Object,
  this.superinterfaces = const [],
  this.isAbstract = false
}) : super(name, annotations);