non_const_call_to_literal_constructor
Details about the 'non_const_call_to_literal_constructor' diagnostic produced by the Dart analyzer.
This instance creation must be 'const', because the {0} constructor is marked as '@literal'.
Description
#
The analyzer produces this diagnostic when a constructor that has the
literal
annotation is invoked without using the const
keyword, but all of the arguments to the constructor are constants. The
annotation indicates that the constructor should be used to create a
constant value whenever possible.
Example
#The following code produces this diagnostic:
import 'package:meta/meta.dart';
class C {
@literal
const C();
}
C f() => C();
Common fixes
#Add the keyword const before the constructor invocation:
import 'package:meta/meta.dart';
class C {
@literal
const C();
}
void f() => const C();
除非另有说明,文档之所提及适用于 Dart 3.10.3 版本报告页面问题.