removeShorthandGap static method
Implementation
static void removeShorthandGap(CSSStyleDeclaration style, [bool? isImportant]) {
if (style.contains(ROW_GAP)) style.removeProperty(ROW_GAP, isImportant);
if (style.contains(COLUMN_GAP)) style.removeProperty(COLUMN_GAP, isImportant);
}