info property
Short, user-facing message. Printed unconditionally on error.
Implementation
@override
String get info {
final buf = StringBuffer(message);
if (path != null) {
buf.write(' [file: $path]');
}
if (flavor != null) {
buf.write(' [flavor: $flavor]');
}
if (keyPath != null) {
buf.write(' [at: $keyPath]');
}
return buf.toString();
}