ClientMethod constructor
ClientMethod({
- required String name,
- required List<
ClientParam> parameters, - required ClientType returnType,
- required bool isSse,
- required WebsocketType websocketType,
- required String? path,
- required String parentPath,
- required String? method,
- required List<
ClientLifecycleComponent> lifecycleComponents, - required bool isExcluded,
Implementation
ClientMethod({
required this.name,
required this.parameters,
required ClientType returnType,
required this.isSse,
required this.websocketType,
required this.path,
required this.parentPath,
required this.method,
required this.lifecycleComponents,
required this.isExcluded,
}) : _returnType = returnType;