OverlayFilter constructor

const OverlayFilter({
  1. int? x,
  2. int? y,
  3. String? eofAction,
  4. int? shortest,
  5. int? overlayW,
  6. int? overlayH,
  7. int? inputFrameCount,
  8. Duration? timestamp,
})

Implementation

const OverlayFilter({
  this.x,
  this.y,
  this.eofAction,
  this.shortest,
  this.overlayW,
  this.overlayH,
  this.inputFrameCount,
  this.timestamp,
})  : assert(shortest == null || shortest == 1 || shortest == 0),
      assert(eofAction == null || eofAction == 'repeat' || eofAction == 'endall' || eofAction == 'pass');