void removeRange(int start, int end) { final temp = List<T>.from(value); temp.removeRange(start, end); value = temp; }