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