GivenWhenThen<Example extends IntegrationExample?> constructor

GivenWhenThen<Example extends IntegrationExample?>(
  1. String description,
  2. IntegrationStepCallback<Example> step
)

Implementation

GivenWhenThen(String description, IntegrationStepCallback<Example> step)
    : super(
        description:
            '${IntegrationLog.tag} 👉 Give, When and Then: $description',
        step: step,
      );