operator >= method

bool operator >=(
  1. Vintage other
)

Returns true if value is greater than or equal to other's value.

Implementation

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