【Flutter】JsonKey警告,The annotation ‘JsonKey‘ can only be used on fields or getter

89 阅读1分钟

问题:使用json_serializable和freezed_annotation时,JsonKey出现提示警告(注释'JsonKey'只能在字段或getter上使用)

解决方法:找到analysis_options.yaml文件,添加如下

analyzer:
  errors:
    invalid_annotation_target: ignore

image.png