operator == method

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

(Equality operator) Participant is considered equal when sid's are equal.

Implementation

@override
bool operator ==(Object other) => other is Participant && sid == other.sid;