errorMsg property
Implementation
@Deprecated('Use exceptionMessage instead.')
String get errorMsg {
String message;
if (_recException == null) {
message = '';
} else {
message = _recException.toString();
final colon = message.lastIndexOf(': ');
if (colon > -1 && colon + 2 <= message.length) {
message = message.substring(colon + 2);
}
}
return message;
}