keep method

void keep({
  1. bool full = false,
})

Keeps the last visible output lines in place.

When full is true (and the section was created with capture enabled), the complete output is rendered instead of only the last visible lines.

Implementation

void keep({final bool full = false}) => section.keep(full: full);