From 640d8eba0f70a59d1f0514b40fbb7200f6f4e355 Mon Sep 17 00:00:00 2001 From: Taryn Date: Sun, 24 Jun 2018 16:18:22 -0500 Subject: [PATCH] Fix Colors.fromARGB docs to mention the fromRGBO constructor (flutter/engine#5604) --- 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 6ee345816f..6adb1902b3 100644 --- a/engine/src/flutter/lib/ui/painting.dart +++ b/engine/src/flutter/lib/ui/painting.dart @@ -114,7 +114,7 @@ class Color { /// /// Out of range values are brought into range using modulo 255. /// - /// See also [fromARGB], which takes the alpha value as a floating point + /// See also [fromRGBO], which takes the alpha value as a floating point /// value. const Color.fromARGB(int a, int r, int g, int b) : value = (((a & 0xff) << 24) |