SpeedDialChild _gamePlaySpeedButton({
context,
String? currentGamePlay,
List<PlayerScores>? loadedScores,
String? enabledImage,
String? disabledImage,
}) {}
这个没有括号,有一个名字,这个是为了研究那个。像构造函数这样的函数可以吗?
SpeedDialChild _gamePlaySpeedButton(
context,
String? currentGamePlay,
List<PlayerScores>? loadedScores,
String? enabledImage,
String? disabledImage,
) {}
1条答案
按热度按时间nlejzf6q1#
在Dart中,参数周围带有花括号的函数称为命名参数函数。这些函数允许您在调用它们时指定命名参数,这可以提高代码的可读性和可维护性。
在您的示例中,第一个函数
_gamePlaySpeedButton
是一个命名参数函数,它接受几个命名参数,如currentGamePlay
、loadedScores
等。调用此函数时,可以通过指定参数名称后跟冒号和值来传递这些参数的值。例如,要调用
_gamePlaySpeedButton
并传递currentGamePlay
参数的值,您可以执行以下操作:另一方面,参数周围没有花括号的函数称为位置参数函数。这些函数允许您以特定顺序指定参数。
在您的示例中,第二个函数
_gamePlaySpeedButton
是一个位置参数函数。有关更多示例和详细信息,请参阅:https://flutterbyexample.com/lesson/function-arguments-default-optional-named