String specificity

Source

String get specificity {
  var total = '';
  if (component != null) {
    total += component.specificity;
  }
  if (child != null) {
    total += child.specificity;
  }
  return total;
}