Flutter JSON Serialization - Not generating *.g.dart files

后端 未结 4 586
南笙
南笙 2021-01-12 23:18

I am new to flutter and the objective is to serialise complex JSON objects which contain other smaller objects.

Using the json_serializable: ^2.0.0 and

4条回答
  •  感情败类
    2021-01-13 00:02

    I had this following error

    error

    [WARNING] json_serializable:json_serializable on lib/day10/models/sentence.dart:
    Missing "part 'sentence.g.dart';".
    

    I noticed that I had to change on the model file this part 'Sentence.g.dart'; to this part 'sentence.g.dart'; in other words, I had to lowercase it.

提交回复
热议问题