RTMPIngress constructor

RTMPIngress({
  1. int? width,
  2. int? height,
  3. double? frameRate,
  4. String? software,
  5. String? version,
  6. String? encoder,
  7. String? remoteAddr,
})

Implementation

factory RTMPIngress({
  $core.int? width,
  $core.int? height,
  $core.double? frameRate,
  $core.String? software,
  $core.String? version,
  $core.String? encoder,
  $core.String? remoteAddr,
}) {
  final result = create();
  if (width != null) result.width = width;
  if (height != null) result.height = height;
  if (frameRate != null) result.frameRate = frameRate;
  if (software != null) result.software = software;
  if (version != null) result.version = version;
  if (encoder != null) result.encoder = encoder;
  if (remoteAddr != null) result.remoteAddr = remoteAddr;
  return result;
}