addNote method

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

To add developer notes.

Implementation

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