NoiseReductionConfig.fromJson constructor

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

Creates a NoiseReductionConfig from JSON.

Implementation

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