EvaluationParserConfig.fromJson constructor

EvaluationParserConfig.fromJson(
  1. 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),
    },
  );
}