compareTo method

  1. @override
int compareTo(
  1. Short other
)
override

Compares this Short with another Short.

Implementation

@override
int compareTo(Short other) => _value.compareTo(other._value);