wasSent method

bool wasSent(
  1. bool predicate(
    1. MailMessageInterface
    )
)

Checks if a message matching the predicate was sent.

Implementation

bool wasSent(bool Function(MailMessageInterface) predicate) {
  return _sent.any(predicate);
}