import 'package:json_annotation/json_annotation.dart'; part 'auth.g.dart'; @JsonSerializable() class Auth { final int userId; Auth({required this.userId}); factory Auth.fromJson(Map json) => _$AuthFromJson(json); Map toJson() => _$AuthToJson(this); }