height property

int get height

Implementation

int get height {
  try {
    return _stdout.hasTerminal ? _stdout.terminalLines : 24;
  } catch (_) {
    return 24;
  }
}