doc_import_cannot_have_prefix
Details about the 'doc_import_cannot_have_prefix' diagnostic produced by the Dart analyzer.
Doc imports can't have prefixes.
Description
#The analyzer produces this diagnostic when a documentation import has a prefix.
Using prefixes isn't supported for documentation imports.
Example
#The following code produces this diagnostic because the documentation import declares a prefix:
dart
/// @docImport 'package:meta/meta.dart' as a;
library;
Common fixes
#Remove the prefix:
dart
/// @docImport 'package:meta/meta.dart';
library;
Was this page's content helpful?
除非另有说明,文档之所提及适用于 Dart 3.10.3 版本报告页面问题.