printMatchers method

void printMatchers({
  1. Map<String, String> propNameOverrides = const {},
})

Prints the generated matchers for the properties of W to the console.

Implementation

void printMatchers({
  Map<String, String> propNameOverrides = const {},
}) {
  final value = createMatcherString(
    propNameOverrides: propNameOverrides,
  );
  if (value == null) {
    return;
  }

  // ignore: avoid_print
  print(value);
}