debugString property

String get debugString

Implementation

String get debugString {
  final typeString = _debugTypeCache[type] ??= type.toString();
  if (tag == null) return typeString;
  // Preserve historical format: Type_tag
  return '${typeString}_$tag';
}