inc method

void inc([
  1. int level = 1
])

Increase the indentation level.

Implementation

void inc([int level = 1]) {
  _count += level;
}