PipelineConfig.fromJson constructor

PipelineConfig.fromJson(
  1. Map<String, dynamic> json
)

Implementation

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