Created
March 13, 2022 06:22
-
-
Save CodingWithTashi/1d085cc717a0e955abb9512959456079 to your computer and use it in GitHub Desktop.
This file contains 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
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