feed method

void feed({
  1. int lines = 1,
})

Implementation

void feed({int lines = 1}) {
  _ensureHeight(runningHeight + font.lineHeight + 10);
  runningHeight += (font.lineHeight + 10) * lines;
}