Color.fromRgb constructor

Color.fromRgb(
  1. int r,
  2. int g,
  3. int b
)

Deprecated; use rgb instead.

Implementation

// TODO(google) Send CLs replacing uses.
Color.fromRgb(int r, int g, int b) : this.rgb(r, g, b);