A classe List da biblioteca dart: core fornece o replaceRange()função para modificar os itens da lista. Esta função substitui o valor dos elementos dentro do intervalo especificado.
A sintaxe para usar a função List.replaceRange () é fornecida a seguir -
List.replaceRange(int start_index,int end_index,Iterable <items>)
Onde,
Start_index - um número inteiro que representa a posição do índice para iniciar a substituição.
End_index - um número inteiro que representa a posição do índice para parar a substituição.
<items> - um objeto iterável que representa os valores atualizados.
Os seguintes example ilustra o mesmo -
void main() {
List l = [1, 2, 3,4,5,6,7,8,9];
print('The value of list before replacing ${l}');
l.replaceRange(0,3,[11,23,24]);
print('The value of list after replacing the items
between the range [0-3] is ${l}');
}
Deve produzir o seguinte output -
The value of list before replacing [1, 2, 3, 4, 5, 6, 7, 8, 9]
The value of list after replacing the items between
the range [0-3] is [11, 23, 24, 4, 5, 6, 7, 8, 9]