RPActivityStep constructor

RPActivityStep({
  1. required String identifier,
  2. bool includeInstructions = true,
  3. bool includeResults = true,
})

Create a RPActivityStep.

The identifier should uniquely identify this step. The optional parameters includeInstructions or includeResults can be used exclude the non-test sections of the step.

Implementation

RPActivityStep({
  required super.identifier,
  this.includeInstructions = true,
  this.includeResults = true,
}) : super(title: "RPActivityStep");