compareTo method

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

Compares this Long with another Long.

Implementation

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