Skip to content

Instantly share code, notes, and snippets.

@CodingWithTashi
Created March 13, 2022 06:22
Show Gist options
  • Save CodingWithTashi/1d085cc717a0e955abb9512959456079 to your computer and use it in GitHub Desktop.
Save CodingWithTashi/1d085cc717a0e955abb9512959456079 to your computer and use it in GitHub Desktop.
void main() {
List<String>? firstList;
List<String> secondList=['a','b','c'];
List<String> finalList = [...?firstList,...secondList];
print(finalList);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment