getQuotas method
Implementation
String getQuotas() {
if (quotas == null || quotas!.isEmpty) return '';
String result = '';
for (int quota in quotas!) {
if (result.length > 0) result += ',';
result += quota.toString();
}
return result;
}