removeShorthandGridColumn static method

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

Implementation

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