getText method

String getText()

Returns the concatenated text content of all bands in the collection.

Each band's text is separated by a newline character.

Implementation

String getText() {
  String text = '';
  for (final Band band in list) {
    text += band.getText();
  }
  return text;
}