operator > method

bool operator >(
  1. dynamic other
)

Greater than comparison.

Implementation

bool operator >(dynamic other) => (value as dynamic) > _extract(other);