operator <= method

bool operator <=(
  1. T other
)

Implementation

bool operator <=(T other) => runtimeType == other.runtimeType
    ? this.value <= other.value
    : _convertAndCompare('<=', other);