TaskFullSchema constructor

TaskFullSchema({
  1. required String code,
  2. required int level,
  3. required TaskType type,
  4. required int minQuantity,
  5. required int maxQuantity,
  6. String? skill,
  7. required RewardsSchema rewards,
})

Returns a new TaskFullSchema instance.

Implementation

TaskFullSchema({
  required this.code,
  required this.level,
  required this.type,
  required this.minQuantity,
  required this.maxQuantity,
  this.skill,
  required this.rewards,
});