Operator to sum FutureOr<num>.
FutureOr<num>
Future<num> operator +(FutureOr<num> other) => resolveBoth(other, (n1, n2) => n1 + n2);