packed_ annotation
Details about the 'packed_annotation' diagnostic produced by the Dart analyzer.
Structs must have at most one 'Packed' annotation.
Description
#
The analyzer produces this diagnostic when a subclass of
Struct has more than one
Packed annotation.
For more information about FFI, see C interop using dart:ffi.
Example
#
The following code produces this diagnostic because the class
C, which is a subclass of Struct,
has two Packed annotations:
import 'dart:ffi';
@Packed(1)
@Packed(1)
final class C extends Struct {
external Pointer<Uint8> notEmpty;
}
Common fixes
#Remove all but one of the annotations:
import 'dart:ffi';
@Packed(1)
final class C extends Struct {
external Pointer<Uint8> notEmpty;
}
除非另有说明,文档之所提及适用于 Dart 3.12.2 版本报告页面问题.