FeatureSelectionConfig_FeatureConfig.fromJson constructor
Implementation
factory FeatureSelectionConfig_FeatureConfig.fromJson(
Map<String, dynamic> json,
) {
return FeatureSelectionConfig_FeatureConfig(
featureId: json['featureId'] ?? '',
driftThreshold: decodeDouble(json['driftThreshold']) ?? 0,
);
}