toColor function

Color toColor(
  1. List<double> rgb
)

Implementation

Color toColor(List<double> rgb) {
  return Color.fromARGB(255, (rgb[0] * 255).toInt(), (rgb[1] * 255).toInt(),
      (rgb[2] * 255).toInt());
}