matches method

bool matches(
  1. LeakSummary? other
)

Implementation

bool matches(LeakSummary? other) =>
    other != null &&
    const DeepCollectionEquality().equals(totals, other.totals);