addRenderEffect method

void addRenderEffect(
  1. Decorator effect
)

Applies the provided Decorator to the page.

Render effects should not be confused with regular Effects. Examples of the render effects include: whole-page blur, convert into grayscale, apply color tint, etc.

Implementation

void addRenderEffect(Decorator effect) => _renderEffect.addLast(effect);