VideoOptions constructor

VideoOptions({
  1. bool? clickToExpandRequested,
  2. bool? customControlsRequested,
  3. bool? startMuted,
})

Constructs a VideoOptions to further customize a native ad request.

This is only necessary if you wish to further customize your native ad integration.

Implementation

VideoOptions({
  this.clickToExpandRequested,
  this.customControlsRequested,
  this.startMuted,
});