CompilePipeMetadata constructor
      
      CompilePipeMetadata({ 
    
    
- required CompileTypeMetadata type,
- FunctionType? transformType,
- String? name,
- bool? pure = true,
- List<LifecycleHooks> lifecycleHooks = const [],
Implementation
CompilePipeMetadata({
  required this.type,
  this.transformType,
  this.name,
  this.pure = true,
  this.lifecycleHooks = const [],
});