Created
June 5, 2019 19:12
-
-
Save marcinOz/f288f7d69b40c33f83b0512fd2de9f77 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
final s = ["d", "e", "f"]; | |
final s2 = ["a", "b", "c", ...s]; | |
print(s2); // [a, b, c, d, e, f] | |
var s; | |
final s2 = ["a", "b", "c", ...?s]; | |
print(s2); // [a, b, c] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment