class Reward { final int placement; final int reward; Reward.fromMap(Map map) : placement = map['placement'], reward = map['reward']; }