setCreativeDebuggerEnabled static method

void setCreativeDebuggerEnabled(
  1. bool enabled
)

Whether the creative debugger will be displayed on fullscreen ads after flipping the device screen down twice. Defaults to true.

Enable Creative Debugger

Implementation

static void setCreativeDebuggerEnabled(bool enabled) {
  channel.invokeMethod('setCreativeDebuggerEnabled', {
    'value': enabled,
  });
}