isCssNotEmpty function
Returns true
if CssStyleDeclaration is not empty.
Implementation
bool isCssNotEmpty(CssStyleDeclaration css) {
return !isCssEmpty(css);
}
Returns true
if CssStyleDeclaration is not empty.
bool isCssNotEmpty(CssStyleDeclaration css) {
return !isCssEmpty(css);
}