Skip to content

Instantly share code, notes, and snippets.

@Deleplace
Created March 13, 2022 13:50
Show Gist options
  • Select an option

  • Save Deleplace/45261b596685a413ef64ce9404a92143 to your computer and use it in GitHub Desktop.

Select an option

Save Deleplace/45261b596685a413ef64ce9404a92143 to your computer and use it in GitHub Desktop.
Insert an element in a set
void main() {
var x = new Set<String>();
x.add("foo");
x.add("bar");
var e = "baz";
x.add(e);
print(x);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment