add method

void add(
  1. T valueToAdd
)

Implementation

void add(T valueToAdd) {
  value = [...value, valueToAdd];
}