operator * method

Future<double> operator *(
  1. FutureOr<double> other
)

Operator to multiply FutureOr<double>.

Implementation

Future<double> operator *(FutureOr<double> other) =>
    resolveBoth(other, (n1, n2) => n1 * n2);