dart spread operator ... code example Example: dart spread arr1 = [1, 2, 3]; arr2 = [...arr1, 4, 5, 6] // arr -> [1, 2, 3, 4, 5, 6]