removeShorthandPlaceContent static method

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

Implementation

static void removeShorthandPlaceContent(CSSStyleDeclaration style, [bool? isImportant]) {
  if (style.contains(ALIGN_CONTENT)) style.removeProperty(ALIGN_CONTENT, isImportant);
  if (style.contains(JUSTIFY_CONTENT)) style.removeProperty(JUSTIFY_CONTENT, isImportant);
}