3.1과 완전히 동일하다.자세한 것들은 아래에 있는 링크에서 보자.https://want-to-work-life-balance.tistory.com/entry/Dart-31-Named-Parameters Dart - 3.1 Named Parameters일반적인 함수를 선언하려면...String sayHello(String name, int age, String country) { return "Hello $name, you are $age, and you come from $country";}이 함수를 불러오려면...void main() { print(sayHello('me', 12, 'korea'));}이렇게want-to-work-life-balance.tistory.com참고 코드를 남기자면, 다..