named Parameters 를 지원한다내가 하고 싶은건 sayHello 인데 그 밖에 더 정보를 보내고 싶다 String sayHello(String name, int age, String country) { return "Hello $name , you are $age, and you come from $country";}void main() { print(sayHello('sohee', 20, 'korea'));}이렇게 할 수도 있는데 가독성이 많이 떨어진다void main() { print(sayHello('sohee', 20, 'korea'));}부분의 sohee의 변수는 무엇이며20은 어떤걸 의미해서 보낸건지 korea도 어떤 의미로 보낸 건지 알 수 없다 named argument순..