formattedMessage property

String get formattedMessage

Implementation

String get formattedMessage {
  if (toString().startsWith('Exception: ')) {
    return toString().substring(11);
  } else {
    return toString();
  }
}