secure_ pubspec_ urls
Details about the 'secure_pubspec_urls' diagnostic produced by the Dart analyzer.
The '{0}' protocol shouldn't be used because it isn't secure.
Description
#
The analyzer produces this diagnostic when a URL in a
pubspec.yaml file is using a non-secure scheme,
such as http.
Example
#
The following code produces this diagnostic because the
pubspec.yaml file contains an
http URL:
dependencies:
example: any
repository: http://github.com/dart-lang/example
Common fixes
#
Change the scheme of the URL to use a secure scheme, such as
https:
dependencies:
example: any
repository: https://github.com/dart-lang/example
除非另有说明,文档之所提及适用于 Dart 3.12.2 版本报告页面问题.