MetaRoute constructor

const MetaRoute({
  1. required String className,
  2. required String filePath,
  3. required String path,
  4. required Iterable<MetaMethod> methods,
  5. required Iterable<MetaParam> params,
  6. required String constructorName,
  7. required AnnotationMapper annotationsFor,
  8. required ClassElement element,
})

Implementation

const MetaRoute({
  required this.className,
  required this.filePath,
  required this.path,
  required this.methods,
  required this.params,
  required this.constructorName,
  required this.annotationsFor,
  required this.element,
});