subtract method

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

Subtracts two numbers.

Implementation

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