StepMessage constructor

StepMessage({
  1. required String name,
  2. required RunnableDebugInformation context,
  3. List<Tag> tags = const [],
  4. GherkinTable? table,
  5. String? multilineString,
  6. StepResult? result,
  7. List<Attachment>? attachments,
})

A message related to a step

Implementation

StepMessage({
  required String name,
  required RunnableDebugInformation context,
  this.tags = const [],
  this.table,
  this.multilineString,
  this.result,
  this.attachments,
}) : super(
        target: Target.step,
        name: name,
        context: context,
      );