Future<AuthUser> getMe() async { final res = await dio.get<Map<String, dynamic>>(endpoints.me); return AuthUser.fromJson(res.data!); }