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