clear method

Clears the current operation.

Implementation

TSimpleOperation clear() {
  return const TSimpleOperation(
    isLastOperandPercent: false,
    operands: <String>[],
    operator: null,
    result: null,
  );
}