indent method

String indent()

Implementation

String indent() {
  var str = '';
  for (int i = 0; i < this; i++) str += '  ';
  return str;
}