operator - method

Future<num> operator -(
  1. FutureOr<num> other
)

Operator to subtract FutureOr<num>.

Implementation

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