fromHex static method

Color fromHex(
  1. String hexString
)

Static method to convert a hex string to a Color

Implementation

static Color fromHex(String hexString) {
  return HexColor(hexString);
}