removeShorthandPlaceSelf static method

void removeShorthandPlaceSelf(
  1. CSSStyleDeclaration style, [
  2. bool? isImportant
])

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);
}