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
json_serializable: ^2.0.0
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.
part 'Sentence.g.dart';
part 'sentence.g.dart';