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