addMemo method

void addMemo(
  1. List l,
  2. String s
)

To add developer memos.

Implementation

void addMemo(List l, String s) {
  l.add(s);
}