TSimpleOperation constructor

const TSimpleOperation({
  1. List<String> operands = const <String>[],
  2. String? operator,
  3. String? result,
  4. bool isLastOperandPercent = false,
})

Constructs a new TSimpleOperation instance with the given operands, operator, and result.

Implementation

const TSimpleOperation({
  this.operands = const <String>[],
  this.operator,
  this.result,
  this.isLastOperandPercent = false,
});