operator > method

bool operator >(
  1. WindowSize other
)

Whether this WindowSize is larger than other.

Implementation

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