getQueryId method
return a unified String as the key of the map
Implementation
String getQueryId() {
if (_cachedQueryId == null) {
if (base != null) {
_cachedQueryId = '$base|$this';
} else {
_cachedQueryId = toString();
}
}
return _cachedQueryId!;
}