isCSSColor function
- @Deprecated('Call isCssColor() instead.' 'This feature was deprecated since v1.2.0 to meet the https://dart.dev/guides/language/effective-dart/style#do-capitalize-acronyms-and-abbreviations-longer-than-two-letters-like-words')
- String color
Check correctness of color string according to https://drafts.csswg.org/css-color-3
Implementation
@Deprecated('Call isCssColor() instead.'
'This feature was deprecated since v1.2.0 to meet the https://dart.dev/guides/language/effective-dart/style#do-capitalize-acronyms-and-abbreviations-longer-than-two-letters-like-words')
/// Check correctness of color string according to https://drafts.csswg.org/css-color-3
bool isCSSColor(String color) {
return isCssColor(color);
}