statusText property

String get statusText

Status bar text for the current frame.

Format: "TYPE 1/3: file.dart:42 desc"

Implementation

String get statusText {
  if (_frames.isEmpty) {
    return '';
  }
  final f = _frames[_index];
  final desc = f.desc != null ? ' ${f.desc}' : '';
  return '${f.typeTag} ${_index + 1}/${_frames.length}: '
      '${f.shortFile}:${f.line}$desc';
}