subtract method

double subtract(
  1. double a,
  2. double b
)

Implementation

double subtract(double a, double b) => a - b;