<itemvalue="Multiply the color components of the source and destination images. This can only result in the same or darker colors (multiplying by white, 1.0, results in no change; multiplying by black, 0.0, results in black). When compositing two opaque images, this has similar effect to overlapping two transparencies on a projector. For a variant that also multiplies the alpha channel, consider [multiply]."/>
<itemvalue="gapless playback"/>
<itemvalue="gapless playback"/>
<itemvalue="Whether the painting is complex enough to benefit from caching. The compositor contains a raster cache that holds bitmaps of layers in order to avoid the cost of repeatedly rendering those layers on each frame. If this flag is not set, then the compositor will apply its own heuristics to decide whether the layer containing this widget is complex enough to benefit from caching. This flag can't be set to true if both [painter] and [foregroundPainter] are null because this flag will be ignored in such case."/>
<itemvalue="Whether the painting is complex enough to benefit from caching. The compositor contains a raster cache that holds bitmaps of layers in order to avoid the cost of repeatedly rendering those layers on each frame. If this flag is not set, then the compositor will apply its own heuristics to decide whether the layer containing this widget is complex enough to benefit from caching. This flag can't be set to true if both [painter] and [foregroundPainter] are null because this flag will be ignored in such case."/>
<itemvalue="Best possible quality when scaling up images by scale factors larger than 5-10x. When images are scaled down, this can be worse than [medium] for scales smaller than 0.5x, or when animating the scale factor. This option is also the slowest. This value results in a standard "Bicubic" algorithm which uses a 3rd order equation to smooth the abrupt transitions between pixels while preserving some of the sense of an edge and avoiding sharp peaks in the result. {@macro dart.ui.filterQuality.seeAlso}"/>
<itemvalue="Best possible quality when scaling up images by scale factors larger than 5-10x. When images are scaled down, this can be worse than [medium] for scales smaller than 0.5x, or when animating the scale factor. This option is also the slowest. This value results in a standard "Bicubic" algorithm which uses a 3rd order equation to smooth the abrupt transitions between pixels while preserving some of the sense of an edge and avoiding sharp peaks in the result. {@macro dart.ui.filterQuality.seeAlso}"/>
@ -71,7 +72,6 @@
<itemvalue="precision"/>
<itemvalue="precision"/>
<itemvalue="frustum culled"/>
<itemvalue="frustum culled"/>
<itemvalue="auto clear"/>
<itemvalue="auto clear"/>
<itemvalue="The callback provided to onChanged should update the state of the parent [StatefulWidget] using the [State.setState] method, so that the parent gets rebuilt; for example:"/>