removeShorthandGridColumn static method
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);
}