VideoEncoder2Configuration constructor

VideoEncoder2Configuration({
  1. required String token,
  2. required String name,
  3. int? useCount,
  4. required int govLength,
  5. int? anchorFrameDistance,
  6. required String profile,
  7. bool? guaranteedFrameRate,
  8. required String encoding,
  9. required VideoResolution2 resolution,
  10. required VideoRateControl2 rateControl,
  11. required MulticastConfiguration multicast,
  12. required double quality,
})

Implementation

VideoEncoder2Configuration({
  required this.token,
  required this.name,
  this.useCount,
  required this.govLength,
  this.anchorFrameDistance,
  required this.profile,
  this.guaranteedFrameRate,
  required this.encoding,
  required this.resolution,
  required this.rateControl,
  required this.multicast,
  required this.quality,
});