AudioRoutingConfig constructor

const AudioRoutingConfig({
  1. required RouteConfigEntry defaultRoute,
  2. RouteConfigEntry? carAudio,
  3. RouteConfigEntry? builtInReceiver,
  4. RouteConfigEntry? builtInSpeaker,
  5. RouteConfigEntry? bluetoothA2DP,
  6. RouteConfigEntry? bluetoothHFP,
  7. RouteConfigEntry? headphones,
})

Creates an audio routing configuration.

Implementation

const AudioRoutingConfig({
  required this.defaultRoute,
  this.carAudio,
  this.builtInReceiver,
  this.builtInSpeaker,
  this.bluetoothA2DP,
  this.bluetoothHFP,
  this.headphones,
});