Dart 공식 문서에 따르면...(https://dart.dev/guides/language/language-tour#collection-operators) Dart also offers collection if and collection for, which you can use to build collections using conditionals (if) and repetition (for). 컬렉션을 구축할 때 'if'나 'for'을 사용할 수 있다고 되어있다. Collection for는 아래와 같이 사용한다. void main() { var oldFriends = ['nico', 'lynn']; var newFriends = [ 'lewis', 'ralph', 'darren', for (var ..