减数
num reduce(num reduction) { if (this == null) { return -reduction; } return this ?? 0 - reduction; }