add method

dynamic add(
  1. T f
)

Implementation

add(T f) {
  value.add(f);
  notifyListeners();
}