class Profile { final String username; final int points; Profile.fromMap(Map map) : username = map['username'], points = map['points'] ?? 0; }