operator / method

Future<double> operator /(
  1. FutureOr<num> other
)

Operator to divide FutureOr<num>.

Implementation

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