RPActivityStep constructor

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

The basic constructor which returns a Activity Step. The identifier is required for ID purposes. The optional parameters includeInstructions or includeResults can be used exclude the non-test sections of the step.

Implementation

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