reduce method

double reduce(
  1. double reduction
)

减数

Implementation

double reduce(double reduction) {
  if (this == null) {
    return -reduction;
  }
  return this! - reduction;
}