$label property

String $label
inherited

Implementation

String get $label {
  if (!$isLocked) return '';
  final regex = RegExp(r'[$\w]+\.');
  final label = iD.toLethalString().replaceFirst(regex, '');
  return label.toSentenceCase();
}