Operator to multiply FutureOr<int>.
FutureOr<int>
Future<int> operator *(FutureOr<int> other) => resolveBoth(other, (n1, n2) => n1 * n2);