humanReadableDescription method

  1. @override
String humanReadableDescription()
override

Implementation

@override
String humanReadableDescription() {
  final delegateDescription = delegate is HumanReadable
      ? (delegate as HumanReadable).humanReadableDescription()
      : delegate.toString();

  return '$alias (alias to $delegateDescription)';
}