maybeAppendList method
Implementation
void maybeAppendList(List<String>? values, StringBuffer result) {
if (values != null) {
for (String value in values) {
maybeAppend(value, result);
}
}
}
void maybeAppendList(List<String>? values, StringBuffer result) {
if (values != null) {
for (String value in values) {
maybeAppend(value, result);
}
}
}