operator == method

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

Compare this object with another IcsDateTime object.

Implementation

@override
bool operator ==(Object other) {
  return other is IcsDateTime && (other.dt == dt && other.tzid == tzid);
}