getColor function

Color getColor(
  1. int hexValue
)

Get Color structure from hexadecimal value.

Implementation

Color getColor(int hexValue) {
  return Color.fromRef(library.GetColor(hexValue));
}