Step.ofShutdown constructor

Step.ofShutdown({
  1. String name = 'Shutdown Step',
})

Returns the new instance of Step.

Implementation

Step.ofShutdown({String name = 'Shutdown Step'})
    : super(name: name, tasks: [ShutdownTask()]);