breadcrumb property

String get breadcrumb

Implementation

String get breadcrumb {
  String text = title ?? uri?.toString() ?? "";
  return text.toLowerCase().split('/').last.split('.xml').first;
}