wasCalled method

bool wasCalled(
  1. String service,
  2. String command
)

Check if a command was sent.

Implementation

bool wasCalled(String service, String command) {
  return sentCommands.any((c) => c.service == service && c.command == command);
}