Operator to subtract FutureOr<num>.
FutureOr<num>
FutureOr<num> operator -(FutureOr<num> other) => resolveBoth(other, (n1, n2) => n1 - n2);