NoiseReductionConfig.fromJson constructor
Creates a NoiseReductionConfig from JSON.
Implementation
factory NoiseReductionConfig.fromJson(Map<String, dynamic> json) {
return NoiseReductionConfig(type: json['type'] as String?);
}
Creates a NoiseReductionConfig from JSON.
factory NoiseReductionConfig.fromJson(Map<String, dynamic> json) {
return NoiseReductionConfig(type: json['type'] as String?);
}