ReflectionDto constructor

ReflectionDto({
  1. required bool isPass,
  2. required MessageScoreDto messageScore,
  3. required int passScore,
  4. required int count,
  5. required int maxCount,
})

Implementation

ReflectionDto({
  required this.isPass,
  required this.messageScore,
  required this.passScore,
  required this.count,
  required this.maxCount,
});