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