involves method

bool involves(
  1. MKey contactId
)
override

Implementation

bool involves(MKey contactId) {
  IFact self = this;
  return self is MultiParticipantFact ? (self as MultiParticipantFact).involvesAny(contactId) : contactKey == contactId;
}