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