isValidGapValue static method

bool isValidGapValue(
  1. String val
)

Implementation

static bool isValidGapValue(String val) {
  return val == 'normal' || CSSLength.isLength(val);
}