From 1fb11f475180ccec268ed289969093f0af7816b8 Mon Sep 17 00:00:00 2001 From: Brian Osman Date: Mon, 17 Jul 2023 16:36:09 -0400 Subject: [PATCH] Fix drawVertices documentation --- lib/ui/painting.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/ui/painting.dart b/lib/ui/painting.dart index 62e4233a11768..238dcd5047caf 100644 --- a/lib/ui/painting.dart +++ b/lib/ui/painting.dart @@ -5442,8 +5442,8 @@ abstract class Canvas { /// specified in the `vertices` using the `blendMode` parameter. For the /// purposes of this blending, the colors from the `paint` parameter are /// considered the source, and the colors from the `vertices` are considered - /// the destination. [BlendMode.dstOver] ignores the `paint` and uses only the - /// colors of the `vertices`; [BlendMode.srcOver] ignores the colors of the + /// the destination. [BlendMode.dst] ignores the `paint` and uses only the + /// colors of the `vertices`; [BlendMode.src] ignores the colors of the /// `vertices` and uses only the colors in the `paint`. /// /// All parameters must not be null.