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