class UserModel { final String nickname; final String? avatarUrl; UserModel({ required this.nickname, this.avatarUrl, }); }