MetaMethod constructor

const MetaMethod({
  1. required String name,
  2. required String method,
  3. required String? path,
  4. required Iterable<MetaParam> params,
  5. required MetaReturnType returnType,
  6. required AnnotationMapper annotationsMapper,
  7. required MetaWebSocketMethod? webSocketMethod,
  8. required bool isSse,
})

Implementation

const MetaMethod({
  required this.name,
  required this.method,
  required this.path,
  required this.params,
  required this.returnType,
  required this.annotationsMapper,
  required this.webSocketMethod,
  required this.isSse,
});