OutputAudioConfig.fromJson constructor

OutputAudioConfig.fromJson(
  1. Map json_
)

Implementation

OutputAudioConfig.fromJson(core.Map json_)
  : this(
      audioEncoding: json_['audioEncoding'] as core.String?,
      sampleRateHertz: json_['sampleRateHertz'] as core.int?,
    );