MetaAppConfig constructor

const MetaAppConfig({
  1. required String className,
  2. required String importPath,
  3. required String constructor,
  4. required Iterable<MetaParam> params,
  5. required ClassElement? element,
  6. required AppAnnotation appAnnotation,
  7. required bool isSecure,
  8. required AnnotationMapper annotationsFor,
})

Implementation

const MetaAppConfig({
  required this.className,
  required this.importPath,
  required this.constructor,
  required this.params,
  required this.element,
  required this.appAnnotation,
  required this.isSecure,
  required this.annotationsFor,
});