packed_annotation_alignment
Details about the 'packed_annotation_alignment' diagnostic produced by the Dart analyzer.
Only packing to 1, 2, 4, 8, and 16 bytes is supported.
Description
#
The analyzer produces this diagnostic when the argument to the Packed
annotation isn't one of the allowed values: 1, 2, 4, 8, or 16.
For more information about FFI, see C interop using dart:ffi.
Example
#
The following code produces this diagnostic because the argument to the
Packed annotation (3) isn't one of the allowed values:
import 'dart:ffi';
@Packed(3)
final class C extends Struct {
external Pointer<Uint8> notEmpty;
}
Common fixes
#Change the alignment to be one of the allowed values:
import 'dart:ffi';
@Packed(4)
final class C extends Struct {
external Pointer<Uint8> notEmpty;
}
除非另有说明,文档之所提及适用于 Dart 3.10.3 版本报告页面问题.