StatsPercentValue constructor

const StatsPercentValue({
  1. required double part,
  2. required double total,
})

Stats Percent Value constructor.

Implementation

const StatsPercentValue({required this.part, required this.total})
    : super._();