Skip to content

Instantly share code, notes, and snippets.

@mpfaff
Created September 27, 2019 17:50
Show Gist options
  • Save mpfaff/0014adc04518f6635bc8cfad7054bb62 to your computer and use it in GitHub Desktop.
Save mpfaff/0014adc04518f6635bc8cfad7054bb62 to your computer and use it in GitHub Desktop.
Dart Concatenate Lists Example
void main() {
var a = [1,2,3];
var b = [3,2,4];
var ab = a + b;
print(ab);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment