isPrecise property

bool isPrecise

Implementation

bool get isPrecise {
  return type == CSSLengthType.PX ||
      type == CSSLengthType.VW ||
      type == CSSLengthType.VH ||
      type == CSSLengthType.VMIN ||
      type == CSSLengthType.VMAX ||
      type == CSSLengthType.EM ||
      type == CSSLengthType.REM || type == CSSLengthType.PERCENTAGE;
}