Skip to content

Instantly share code, notes, and snippets.

@shilangyu
Created October 23, 2021 20:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shilangyu/fe4d289d0aead22ba20e1220ab1fee25 to your computer and use it in GitHub Desktop.
Save shilangyu/fe4d289d0aead22ba20e1220ab1fee25 to your computer and use it in GitHub Desktop.
void func(List<int?> l) {
l.followedBy([]);
}
void main() {
List<int> l1 = [123];
func(l1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment