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