isEqual method

bool isEqual(
  1. WidgetPath other
)

Implementation

bool isEqual(WidgetPath other) {
  final bool equal = path.compareTo(other.path) == 0;
  if (equal) {
    tlLogger.v("Widget paths are equal!");
  }
  return equal;
}