doc_ import_ cannot_ have_ configurations
Details about the 'doc_import_cannot_have_configurations' diagnostic produced by the Dart analyzer.
Doc imports can't have configurations.
Description
#
The analyzer produces this diagnostic when a documentation import has one
or more if clauses.
Documentation imports aren't configurable.
Example
#
The following code produces this diagnostic because the documentation
import has an if clause:
/// @docImport 'package:meta/meta.dart' if (dart.library.io) 'dart:io';
library;
Common fixes
#Remove the if clauses:
/// @docImport 'package:meta/meta.dart';
library;
Unless stated otherwise, the documentation on this site reflects Dart 3.10.3. Report an issue.