Result constructor

Result({
  1. Rational? clean,
  2. Map<ImaginaryValue, num> dirtyParts = const {},
  3. Modifier? modifier,
})

Creates the result.

Implementation

Result({Rational? clean, this.dirtyParts = const {}, this.modifier}) {
  this.clean = clean ?? Rational.zero;
}