Operator to divide FutureOr<int>.
FutureOr<int>
Future<double> operator /(FutureOr<int> other) => resolveBoth(other, (n1, n2) => n1 / n2);