StringList constructor

StringList(
  1. String value
)

Implementation

StringList(String value) {
  _stack.push(value);
}