resolveSpacing static method
Implementation
static CSSLengthValue resolveSpacing(String spacing, RenderStyle renderStyle, String property) {
  if (spacing == NORMAL) return CSSLengthValue.zero;
  return CSSLength.parseLength(spacing, renderStyle, property);
}