operator == method

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

Allows you to compare EDateTime with each other

Implementation

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