AiffSettings.fromJson constructor
Implementation
factory AiffSettings.fromJson(Map<String, dynamic> json) {
return AiffSettings(
bitDepth: json['bitDepth'] as int?,
channels: json['channels'] as int?,
sampleRate: json['sampleRate'] as int?,
);
}