CompilePipeMetadata constructor

CompilePipeMetadata({
  1. required CompileTypeMetadata type,
  2. FunctionType? transformType,
  3. String? name,
  4. bool? pure = true,
  5. List<LifecycleHooks> lifecycleHooks = const [],
})

Implementation

CompilePipeMetadata({
  required this.type,
  this.transformType,
  this.name,
  this.pure = true,
  this.lifecycleHooks = const [],
});