import 'package:json_annotation/json_annotation.dart'; part 'car.g.dart'; @JsonSerializable(fieldRename: FieldRename.snake) class CarDTO { CarDTO( {required this.id, required this.plate}); final String id; final String plate; factory CarDTO.fromJson(Map json) => _$CarDTOFromJson(json); Map toJson() => _$CarDTOToJson(this); }