removeShorthandGap static method

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

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);
}