compareTo method

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

Compares this to another LocalTime.

Implementation

@override
int compareTo(LocalTime other) => Comparable.compare(
    nanosecondsSinceMidnight, other.nanosecondsSinceMidnight);