Percentage constructor

Percentage(
  1. int value
)

Implementation

Percentage(
  this.value,
) : assert(value >= 0 && value <= 100);