length = 10, breath = 20, height = 30
length = 10, breath = 20, height = null // no value passed so height is null
>>可选命名参数
参数将用花括号{}来表示。
花括号的参数是可选的。
必须使用参数name分配一个用colan :分隔的值
在花括号中参数的顺序并不重要
这些类型形参帮助我们避免在为具有多个形参的函数传递值时产生混淆。
< em >例子:< / em >
findVolume(int length, int breath, {int height}) {
print('length = $length, breath = $breath, height = $height');
}
findVolume(10,20,height:30);//valid & we can see the parameter name is mentioned here.
findVolume(10,20);//also valid