add method
Adds a string to the StringList, returning the updated StringList.
this is returned for chaining.
Implementation
StringList add(String s) {
_stack.push(s);
return this;
}
Adds a string to the StringList, returning the updated StringList.
this is returned for chaining.
StringList add(String s) {
_stack.push(s);
return this;
}