invalid_await_not_required_annotation
Details about the 'invalid_await_not_required_annotation' diagnostic produced by the Dart analyzer.
The annotation 'awaitNotRequired' can only be applied to a Future-returning function, or a Future-typed field.
Description
#
The analyzer produces this diagnostic when anything other than a
Future-returning function or a Future-typed field or top-level
variable is annotated with awaitNotRequired.
Example
#
The following code produces this diagnostic because the annotation is on a
void-returning function:
import 'package:meta/meta.dart';
@awaitNotRequired
void f() {}
Common fixes
#Remove the annotation:
void f() {}
除非另有说明,文档之所提及适用于 Dart 3.10.3 版本报告页面问题.