Modular constructor

Modular(
  1. int value,
  2. int mod
)

Implementation

Modular(
  this.value,
  this.mod,
) {
  value %= mod;
}