sub method

  1. @override
int sub(
  1. int a,
  2. int b
)
override

Computes the subtraction: a - b.

Implementation

@override
int sub(int a, int b) => a - b;