subjectLabel property

String subjectLabel

Friendly label for the subject object

Implementation

String get subjectLabel {
  if (_subjectLabel == null || _subjectLabel == '') {
    final x = '`${subject.runtimeType.toString()}`';
    return x;
  }

  return '$_subjectLabel';
}