dialogContent method

String dialogContent([
  1. Locale? locale
])

Implementation

String dialogContent([Locale? locale]) {
  if (cause is UserException)
    return (cause as UserException)._dialogTitleAndContent(locale);
  else if (cause is String)
    return cause as String;
  else
    return _codeAsTextOrMsg(locale);
}