compareTo method

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

Compares this Character with another Character.

Implementation

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