From 5b645efd49e70aa1984fe31ec56834feada13f35 Mon Sep 17 00:00:00 2001 From: Pragya Date: Tue, 15 Sep 2020 00:29:57 +0530 Subject: [PATCH] Updated ColorMatrix to ColorFilter (flutter/engine#19905) --- engine/src/flutter/lib/ui/painting.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/src/flutter/lib/ui/painting.dart b/engine/src/flutter/lib/ui/painting.dart index cfafb039c42..ed0ec14ccb8 100644 --- a/engine/src/flutter/lib/ui/painting.dart +++ b/engine/src/flutter/lib/ui/painting.dart @@ -2656,7 +2656,7 @@ class ColorFilter { /// in unnormalized, 0...255, space. For example, the identity matrix is: /// /// ``` - /// const ColorMatrix identity = ColorFilter.matrix([ + /// const ColorFilter identity = ColorFilter.matrix([ /// 1, 0, 0, 0, 0, /// 0, 1, 0, 0, 0, /// 0, 0, 1, 0, 0,