Skip to content

Instantly share code, notes, and snippets.

@saileshbro
Created November 15, 2022 11:29
Show Gist options
  • Save saileshbro/e2aea03cd099d7859b4e22b4c579b035 to your computer and use it in GitHub Desktop.
Save saileshbro/e2aea03cd099d7859b4e22b4c579b035 to your computer and use it in GitHub Desktop.
concurrent modification
void main() {
List<int> array = [1,2,3];
array.addAll(array);
print(array);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment