add method

bool add(
  1. String index,
  2. String text
)

Implementation

bool add(String index, String text) {
  texts[index] = text;
  return true;
}