12

我已添加// @dart=2.9到我的所有文件中,但build_runner不会抛出此错误:

Warning: Operand of null-aware operation '?.' has type 'SendPort' which excludes null. - 'SendPort' is from 'dart:isolate'.  sendPort?.send(result);  ^Error: Cannot run with sound null safety, because the following dependencies don't support null safety: 
- package:build_runner_core 
- package:json_serializable 
- package:moor_generator 
- package:objectbox_generator 
- package:retrofit_generator 
- package:source_gen 
- package:build_config 
- package:build_runner 
- package:build 
- package:json_annotation 
- package:glob 
- package:pool 
- package:crypto 
- package:logging 
- package:watcher 
- package:build_resolvers 
- package:timing 
- package:graphs 
- package:package_config 
- package:yaml 
- package:analyzer 
- package:sqlparser 
- package:objectbox 
- package:dart_style 
- package:built_collection 
- package:code_builder 
- package:dio 
- package:tuple 
- package:retrofit 
- package:pedantic 
- package:checked_yaml 
- package:pubspec_parse 
- package:build_daemon 
- package:args 
- package:io 
- package:convert 
- package:pub_semver 
- package:ffi 
- package:quiver 
- package:moor 
- package:recase 
- package:_fe_analyzer_shared 
- package:built_value 
- package:http_parser 
- package:http_multi_server 
- package:shelf 
- package:stream_transform 
- package:mime 
- package:shelf_web_socket 
- package:web_socket_channel 
- package:cli_util 
- package:fixnum 
- package:synchronizedFor solutions, see https://dart.dev/go/unsound-null-safety.dart_tool/build/entrypoint/build.dart:44:44: Error: The parameter 'sendPort' can't have a value of 'null' because of its type 'SendPort', but the implicit default value is 'null'. - 'SendPort' is from 'dart:isolate'.Try adding either an explicit non-'null' default value or the 'required' modifier.void main(List<String> args, [_i8.SendPort sendPort]) async { 
4

3 回答 3

2

请确保您的所有软件包都更新到各自的空安全版本。对于构建^1.12.2运行器,请在当前工作目录中使用,然后在终端中运行以下命令。

flutter clean
flutter pub cache repair
flutter pub run build_runner clean
flutter pub get

然后运行构建运行器命令。

这对我有用,我已经使用构建运行器成功生成了文件。

于 2021-04-15T21:26:27.863 回答
1

删除.pub-cache你的flutter文件夹中的文件夹,然后运行pub upgrade,之后你应该能够运行:

flutter packages pub run build_runner build --delete-conflicting-outputs
于 2021-04-16T10:07:37.307 回答
0

对于那些正在使用完全可靠的零安全性的人,即不使用@dart=2.9或其他方式忽略零安全性的人。

在您的pubspec.yaml文件中,较低的 SDK 版本应该是>=2.12.

environment:
  sdk: '>=2.12.0 <3.0.0'

使用以下版本(都是空安全的)

json_annotation: ^4.0.1
json_serializable: ^4.1.2
build_runner: ^2.0.3
于 2021-05-16T16:23:26.333 回答