addThen method

List<T> addThen(
  1. T value
)

Implementation

List<T> addThen(T value) {
  add(value);
  return this;
}