str method

String str()

Returns the String representing the current indentation.

Implementation

String str() {
  String result = '';
  for (int i = 0; i < _count; i++) {
    result += tab;
  }
  return result;
}