isSmoothlySame method

bool isSmoothlySame(
  1. CSSPath other
)

Implementation

bool isSmoothlySame(CSSPath other) {
  if (_commands.length == other._commands.length) {
    // TODO: more compare
    return true;
  }
  return false;
}