AchievementObjectiveSchema constructor

AchievementObjectiveSchema({
  1. required AchievementType type,
  2. String? target,
  3. required int total,
})

Returns a new AchievementObjectiveSchema instance.

Implementation

AchievementObjectiveSchema({
  required this.type,
  this.target,
  required this.total,
});