diff --git a/packages/flutter/lib/src/painting/decoration_image.dart b/packages/flutter/lib/src/painting/decoration_image.dart index 1bd756292fbd..b3eeb236b80b 100644 --- a/packages/flutter/lib/src/painting/decoration_image.dart +++ b/packages/flutter/lib/src/painting/decoration_image.dart @@ -154,9 +154,8 @@ class DecorationImage { /// Used to set the filterQuality of the image. /// - /// Use the "low" quality setting to scale the image, which corresponds to - /// bilinear interpolation, rather than the default "none" which corresponds - /// to nearest-neighbor. + /// Defaults to [FilterQuality.low] to scale the image, which corresponds to + /// bilinear interpolation. final FilterQuality filterQuality; /// Whether the colors of the image are inverted when drawn. diff --git a/packages/flutter/lib/src/widgets/basic.dart b/packages/flutter/lib/src/widgets/basic.dart index 85337ee48248..c98662fce64c 100644 --- a/packages/flutter/lib/src/widgets/basic.dart +++ b/packages/flutter/lib/src/widgets/basic.dart @@ -5702,9 +5702,8 @@ class RawImage extends LeafRenderObjectWidget { /// Used to set the filterQuality of the image. /// - /// Use the "low" quality setting to scale the image, which corresponds to - /// bilinear interpolation, rather than the default "none" which corresponds - /// to nearest-neighbor. + /// Defaults to [FilterQuality.low] to scale the image, which corresponds to + /// bilinear interpolation. final FilterQuality filterQuality; /// Used to combine [color] with this image.