MetaParam constructor

const MetaParam({
  1. required String name,
  2. required String type,
  3. required String? typeImport,
  4. required Element typeElement,
  5. required bool nullable,
  6. required bool isRequired,
  7. required bool isNamed,
  8. required String? defaultValue,
  9. required AnnotationMapper annotationsFor,
})

Implementation

const MetaParam({
  required this.name,
  required this.type,
  required this.typeImport,
  required this.typeElement,
  required this.nullable,
  required this.isRequired,
  required this.isNamed,
  required this.defaultValue,
  required this.annotationsFor,
});