methodListString method

String methodListString()

Implementation

String methodListString() {
  List<String> result = [];
  if(this.method != null) {
    for(String method in this.methods!) {
      result.add("\'$method\'");
    }
  }

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