// lib/models/game_rank_dto.dart class GameRankDto { final String playerName; final int primaryScore; // 스도쿠에서는 시간(초) GameRankDto({required this.playerName, required this.primaryScore}); factory GameRankDto.fromJson(Map json) { return GameRankDto( playerName: json['playerName'], primaryScore: (json['primaryScore'] as num).toInt(), ); } }