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