void fillRange(int start, int end, [T? fillValue]) { final temp = List<T>.from(value); temp.fillRange(start, end, fillValue); value = temp; }