Term constructor

Term(
  1. Variable variable,
  2. double coefficient
)

Creates term with the given Variable and coefficient.

Implementation

Term(this.variable, this.coefficient);