appendStringToBaseId method
Implementation
void appendStringToBaseId(String newString) {
final separator = id.endsWith('/') ? '' : '/';
id += "$separator${newString.replaceAll(" ", "+")}";
}
void appendStringToBaseId(String newString) {
final separator = id.endsWith('/') ? '' : '/';
id += "$separator${newString.replaceAll(" ", "+")}";
}