getMethods method
Implementation
String getMethods() {
if (methods != null || methods!.isEmpty) return '';
String result = '';
for (String method in methods!) {
if (result.length > 0) result += ',';
result += method;
}
return result;
}