SystemAudioConfig constructor
Creates a new SystemAudioConfig instance.
All parameters are optional and have default values:
Example:
final config = SystemAudioConfig(
sampleRate: 44100,
channels: 2,
);
Implementation
SystemAudioConfig({
this.sampleRate = 16000,
this.channels = 1,
});