StepStartedMessage constructor

StepStartedMessage(
  1. String name,
  2. RunnableDebugInformation context, {
  3. GherkinTable? table,
  4. String? multilineString,
})

Implementation

StepStartedMessage(
  String name,
  RunnableDebugInformation context, {
  this.table,
  this.multilineString,
}) : super(
        Target.step,
        name,
        context,
        Iterable.empty(),
      );