fromRgbaHex static method

Color fromRgbaHex(
  1. String hex
)

Implementation

static Color fromRgbaHex(String hex) {
  return Color(int.parse(_toArgb(_normalizeHex(hex)), radix: 16));
}