insertLast method

List<T> insertLast(
  1. T element
)

Insert element at the end of List.

Listの最後にelementを挿入します。

Implementation

List<T> insertLast(T element) {
  add(element);
  return this;
}