wasSentWithSubject method

bool wasSentWithSubject(
  1. String subject
)

Asserts that a message with the given subject was sent.

Implementation

bool wasSentWithSubject(String subject) {
  return _sent.any((msg) => msg.subject == subject);
}