import 'package:json_annotation/json_annotation.dart'; part 'friend.g.dart'; @JsonSerializable() class Friend { Friend(); String nickname; String dest; num level; String icon; factory Friend.fromJson(Map json) => _$FriendFromJson(json); Map toJson() => _$FriendToJson(this); }