operator > method

bool operator >(
  1. Vintage other
)

Returns true if value is greater than other's value.

Implementation

bool operator >(Vintage other) => value > other.value;