removeShorthandPlaceSelf static method
Implementation
static void removeShorthandPlaceSelf(CSSStyleDeclaration style, [bool? isImportant]) {
if (style.contains(ALIGN_SELF)) style.removeProperty(ALIGN_SELF, isImportant);
if (style.contains(JUSTIFY_SELF)) style.removeProperty(JUSTIFY_SELF, isImportant);
}