substract static method

  1. @Deprecated('Use subtract instead')
ValuableNumOperation<num> substract(
  1. Valuable<num> operand1,
  2. Valuable<num> operand2
)

Subtraction operation

Implementation

@Deprecated('Use subtract instead')
static ValuableNumOperation<num> substract(
  Valuable<num> operand1,
  Valuable<num> operand2,
) => subtract(operand1, operand2);