FeatureSelectionConfig.fromJson constructor
Implementation
factory FeatureSelectionConfig.fromJson(Map<String, dynamic> json) {
return FeatureSelectionConfig(
featureConfigs:
decodeListMessage(
json['featureConfigs'],
FeatureSelectionConfig_FeatureConfig.fromJson,
) ??
[],
);
}