class LoginRequestDto { final String phone; LoginRequestDto({required this.phone}); Map toJson() { return {"phone": phone}; } }