removeShorthandGridRow static method

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

Implementation

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