StepFinishedMessage constructor

StepFinishedMessage(
  1. String name,
  2. RunnableDebugInformation context,
  3. StepResult result, [
  4. Iterable<Attachment> attachments = const Iterable<Attachment>.empty(),
])

Implementation

StepFinishedMessage(
  String name,
  RunnableDebugInformation context,
  this.result, [
  this.attachments = const Iterable<Attachment>.empty(),
]) : super(Target.step, name, context);