add method

void add(
  1. String val
)

Add

Implementation

void add(String val) {
  _val = _val + val;
}