addInLast method

List<T> addInLast(
  1. T newValue
)

Implementation

List<T> addInLast(T newValue) {
  add(newValue);
  return this;
}