fullItemName property
Gets the full item name including kind (e.g., "hero.model").
Implementation
String get fullItemName {
final path = _getPath();
final segments = path.split('/').where((s) => s.isNotEmpty).toList();
return segments.isNotEmpty ? segments.last : '';
}