getItems method

String getItems()

Implementation

String getItems() {
  List<String> result = [];

  if(this.items != null) {
    for(Item item in this.items!) {
      result.add(item.toString());
    }
  }

  return "[${result.join(",")}]";
}