steps property

List<String>? steps
final

A list of individual command steps to be executed as part of this script. Each string in the list represents a separate command to be run. These steps are executed in sequence. This is an alternative to specifying a single command in the run variable. If steps is provided, run should not be used.

Implementation

final List<String>? steps;