DamageModel constructor

DamageModel({
  1. required String className,
  2. required String uuid,
  3. required String? location,
  4. required num? score,
  5. required List boxes,
  6. required String maskPath,
  7. required String maskUrl,
  8. required bool isPart,
  9. required Color color,
  10. required num? overlapRate,
})

Implementation

DamageModel({
  required this.className,
  required this.uuid,
  required this.location,
  required this.score,
  required this.boxes,
  required this.maskPath,
  required this.maskUrl,
  required this.isPart,
  required this.color,
  required this.overlapRate,
});