EvaluationParserConfig.fromJson constructor
EvaluationParserConfig.fromJson(
- Object? j
Implementation
factory EvaluationParserConfig.fromJson(Object? j) {
final json = j as Map<String, Object?>;
return EvaluationParserConfig(
customCodeParserConfig: switch (json['customCodeParserConfig']) {
null => null,
Object $1 => EvaluationParserConfig_CustomCodeParserConfig.fromJson($1),
},
);
}