freeze method

List<T> freeze()

Implementation

List<T> freeze() {
  return List.unmodifiable(this);
}