import 'package:json_annotation/json_annotation.dart'; part 'profession_verify.g.dart'; @JsonSerializable() class ProfessionVerify { String? icon; @JsonKey(name: 'show_desc') String? showDesc; ProfessionVerify({this.icon, this.showDesc}); factory ProfessionVerify.fromJson(Map json) { return _$ProfessionVerifyFromJson(json); } Map toJson() => _$ProfessionVerifyToJson(this); }