Fix Colors.fromARGB docs to mention the fromRGBO constructor (flutter/engine#5604)

This commit is contained in:
Taryn
2018-06-24 16:18:22 -05:00
committed by Ian Hickson
parent 0225cc7e65
commit 640d8eba0f

View File

@@ -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) |