Prefix constructor

Prefix(
  1. int base,
  2. int p,
  3. String symbol,
  4. String name,
)

Implementation

Prefix(int base, int p, this.symbol, this.name):
  value = pow(base, p);