XpConfiguration.from constructor

XpConfiguration.from({
  1. required int maxSkillTestXp,
  2. required int maxPlacementTestXp,
  3. required int maxCheckpointTestXp,
})

Returns the new instance of XpConfiguration based on arguments.

Implementation

XpConfiguration.from({
  required this.maxSkillTestXp,
  required this.maxPlacementTestXp,
  required this.maxCheckpointTestXp,
});