platform_ value_ disallowed
Details about the 'platform_value_disallowed' diagnostic produced by the Dart analyzer.
Keys in the platforms field can't have
values.
Description
#
The analyzer produces this diagnostic when a key in the
platforms map has a value. To learn more about
specifying your package's supported platforms, check out the
documentation on platform declarations.
Example
#
The following pubspec.yaml produces this
diagnostic because the key web has a value.
name: example
platforms:
web: "chrome"
Common fixes
#Omit the value and leave the key without a value:
name: example
platforms:
web:
Values for keys in the platforms field are
currently reserved for potential future behavior.
除非另有说明,文档之所提及适用于 Dart 3.12.2 版本报告页面问题.