toJson method

Map<String, dynamic> toJson()

Implementation

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