toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final bitrateBps = this.bitrateBps;
  final crfLevel = this.crfLevel;
  final frameRate = this.frameRate;
  final frameRateConversionStrategy = this.frameRateConversionStrategy;
  final gopDuration = this.gopDuration;
  final gopFrameCount = this.gopFrameCount;
  final heightPixels = this.heightPixels;
  final hlg = this.hlg;
  final pixelFormat = this.pixelFormat;
  final profile = this.profile;
  final rateControlMode = this.rateControlMode;
  final sdr = this.sdr;
  final widthPixels = this.widthPixels;
  return {
    'bitrateBps': ?bitrateBps,
    'crfLevel': ?crfLevel,
    'frameRate': ?frameRate,
    'frameRateConversionStrategy': ?frameRateConversionStrategy,
    'gopDuration': ?gopDuration,
    'gopFrameCount': ?gopFrameCount,
    'heightPixels': ?heightPixels,
    'hlg': ?hlg,
    'pixelFormat': ?pixelFormat,
    'profile': ?profile,
    'rateControlMode': ?rateControlMode,
    'sdr': ?sdr,
    'widthPixels': ?widthPixels,
  };
}