Result constructor
Result({
- Rational? clean,
- Map<
ImaginaryValue, num> dirtyParts = const {}, - Modifier? modifier,
Creates the result.
Implementation
Result({Rational? clean, this.dirtyParts = const {}, this.modifier}) {
this.clean = clean ?? Rational.zero;
}