toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final bitrateBps = this.bitrateBps;
  final channelCount = this.channelCount;
  final channelLayout = this.channelLayout;
  final codec = this.codec;
  final displayName = this.displayName;
  final languageCode = this.languageCode;
  final mapping = this.mapping;
  final sampleRateHertz = this.sampleRateHertz;
  return {
    'bitrateBps': ?bitrateBps,
    'channelCount': ?channelCount,
    'channelLayout': ?channelLayout,
    'codec': ?codec,
    'displayName': ?displayName,
    'languageCode': ?languageCode,
    'mapping': ?mapping,
    'sampleRateHertz': ?sampleRateHertz,
  };
}