I didn't find any issue talking about this (and to be honest I don't know if it's doable in Dart), but here we go: ```dart String hello({String name}) { return "Hello $name"; } var name = "Foo"; // Instead of hello(name: name), we could just: hello(name); ```