PipelineConfig.fromJson constructor
Implementation
factory PipelineConfig.fromJson(Map<String, dynamic> json) {
return PipelineConfig(
functions: (json['functions'] as List?)
?.whereNotNull()
.map((e) => e as String)
.toList(),
);
}