expectMatch method

void expectMatch(
  1. dynamic actual,
  2. dynamic matcher,
  3. {String? reason}
)

Implementation

void expectMatch(
  actual,
  matcher, {
  String? reason,
}) =>
    expect(
      actual,
      matcher,
      reason: reason,
    );