hexToInt static method

Color hexToInt(
  1. String hex
)

Implementation

static Color hexToInt(String hex) {
  return Color(int.parse("0xFF$hex"));
}