operator == method

  1. @override
bool operator ==(
  1. Object other
)
override

Returns true if other is a LocalTime with the same time.

Implementation

@override
bool operator ==(Object other) {
  return other is LocalTime && _date == other._date;
}