str method
Returns the String representing the current indentation.
Implementation
String str() {
String result = '';
for (int i = 0; i < _count; i++) {
result += tab;
}
return result;
}
Returns the String representing the current indentation.
String str() {
String result = '';
for (int i = 0; i < _count; i++) {
result += tab;
}
return result;
}