MetaParam constructor

const MetaParam({
  1. required String name,
  2. required MetaType type,
  3. required bool isRequired,
  4. required bool isNamed,
  5. required String? defaultValue,
  6. required AnnotationMapper annotationsFor,
  7. required String? literalValue,
})

Implementation

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