List<T> clone({bool immutable = false}) { if (immutable) return this.immutable; return List<T>.from(this); }