ShouldGenerate constructor

const ShouldGenerate(
  1. String expectedOutput, {
  2. bool contains = false,
  3. Iterable<String>? configurations,
  4. List<String>? expectedLogItems,
})

Implementation

const ShouldGenerate(
  this.expectedOutput, {
  this.contains = false,
  Iterable<String>? configurations,
  List<String>? expectedLogItems,
}) : super._(configurations, expectedLogItems);