operator == method
Returns true if other
is a LocalDateTime with the same date and time.
Implementation
@override
bool operator ==(Object other) {
return other is LocalDateTime && _date == other._date;
}
Returns true if other
is a LocalDateTime with the same date and time.
@override
bool operator ==(Object other) {
return other is LocalDateTime && _date == other._date;
}