Although concrete values and matchers cannot be mixed, it is possible to use a matcher for exact values:

verify(mock).doSomething(
  withFoo = any[Foo],
  withBar = ArgumentMatchers.eq("this is a concrete value to verify"),
  withBaz = ArgumentMatchers.any[Map[String, String]],
  withQux = anyString())