DeclarationMirror constructor

const DeclarationMirror({
  1. required String name,
  2. dynamic type,
  3. dynamic annotations,
  4. bool isFinal = false,
  5. bool isRequired = false,
  6. bool isNamed = false,
})

Implementation

const DeclarationMirror({
  required String name,
  this.type,
  annotations,
  this.isFinal = false,
  this.isRequired = false,
  this.isNamed = false
}) : super(name, annotations);