existsExactlyNTimes method

MultiWidgetMatcher<W> existsExactlyNTimes(
  1. int n
)

Asserts that exactly n widgets of type W exist.

Implementation

MultiWidgetMatcher<W> existsExactlyNTimes(int n) =>
    _exists(min: n, max: n).multi;