removeShorthandGridArea static method

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

Implementation

static void removeShorthandGridArea(CSSStyleDeclaration style, [bool? isImportant]) {
  removeShorthandGridRow(style, isImportant);
  removeShorthandGridColumn(style, isImportant);
  if (style.contains(GRID_AREA_INTERNAL)) {
    style.removeProperty(GRID_AREA_INTERNAL, isImportant);
  }
}