Challenge constructor

Challenge({
  1. required String name,
  2. required String description,
  3. required String status,
  4. required String reward,
})

Implementation

Challenge({
  required this.name,
  required this.description,
  required this.status,
  required this.reward,
});