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