FeatureSelectionConfig_FeatureConfig.fromJson constructor

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

Implementation

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