operator > method

bool operator >(
  1. Money other
)

Money > Money

Implementation

bool operator >(Money other) => compareTo(other) > 0;