FeatureSelectionConfig.fromJson constructor

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

Implementation

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