运行后dart migrate
它显示如下错误:
error • The parameter 'key' can't have a value of 'null' because of its type, but the implicit default value is 'null' at lib/presentation/widgets/home_page_widgets/home_page_list_items/repeat_unit_list_item_score.dart:10:9 • (missing_default_value_for_parameter)
error • The parameter 'score' can't have a value of 'null' because of its type, but the implicit default value is 'null' at lib/presentation/widgets/home_page_widgets/home_page_list_items/repeat_unit_list_item_score.dart:11:19 • (missing_default_value_for_parameter)
error • The parameter 'isLocked' can't have a value of 'null' because of its type, but the implicit default value is 'null' at lib/presentation/widgets/home_page_widgets/home_page_list_items/repeat_unit_list_item_score.dart:12:20 • (missing_default_value_for_parameter)
error • The parameter 'toDoubleUp' can't have a value of 'null' because of its type, but the implicit default value is 'null' at lib/presentation/widgets/home_page_widgets/home_page_list_items/repeat_unit_list_item_score.dart:13:10 • (missing_default_value_for_parameter)
error • The parameter 'isCertificateNeedToRepeat' can't have a value of 'null' because of its type, but the implicit default value is 'null' at lib/presentation/widgets/home_page_widgets/home_page_list_items/repeat_unit_list_item_score.dart:14:10 • (missing_default_value_for_parameter)
error • The argument type 'double?' can't be assigned to the parameter type 'double' at lib/presentation/widgets/home_page_widgets/home_page_list_items/repeat_unit_list_item_score.dart:39:11 • (argument_type_not_assignable)
它们肯定与 null 安全相关,但为什么它不提供迁移工具的 Web 界面的链接?